Skip to content

Commit d17f85d

Browse files
authored
fix invalid JSON in devcontainer.json example (#376)
trailing comma is not allowed in JSON (although VSCode can tolerate it)
1 parent c2c4fe4 commit d17f85d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/remote-dev.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ First create the directory. Next, create `devcontainer.json` and insert the foll
2121
"name": "Swift 5.5",
2222
"image": "swift:5.5",
2323
"extensions": [
24-
"sswg.swift-lang",
24+
"sswg.swift-lang"
2525
],
2626
"settings": {
2727
"lldb.library": "/usr/lib/liblldb.so"
@@ -113,4 +113,4 @@ VSCode allows you to automatically configure your project with a dev container.
113113

114114
Once you've set up your `.devcontainer`, in the command palette run **Remote-Containers: Reopen in Container**. VSCode will relaunch running in your remote container!
115115

116-
For more details about running your project in a remote container, and the available configuration options, see the [Visual Studio Code documentation](https://code.visualstudio.com/docs/remote/remote-overview).
116+
For more details about running your project in a remote container, and the available configuration options, see the [Visual Studio Code documentation](https://code.visualstudio.com/docs/remote/remote-overview).

0 commit comments

Comments
 (0)