Skip to content

Commit a1e98f9

Browse files
authored
Merge pull request #5215 from paddymorgan84/patch-1
Fix small spelling mistake
2 parents f66e2d6 + b998513 commit a1e98f9

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

debugger-launchjson.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Notes about this:
6666
5. The way this works is that VS Code will scrape the output which is set to the console. If a line
6767
matches the pattern, it will launch a browser against the URL which was 'captured' by the pattern.
6868
Here is an explanation of what the pattern does:
69-
* `\\b` : Matches on a word boundery. Note that `\b` indicates a word boundary, but because this is in a json string, the `\` needs to be escaped, hence `\\b`.
69+
* `\\b` : Matches on a word boundary. Note that `\b` indicates a word boundary, but because this is in a json string, the `\` needs to be escaped, hence `\\b`.
7070
* `Now listening on:` : This is a string literal, meaning that the next text must be `Now listening on:`.
7171
* `\\s+` : Matches one or more space characters.
7272
* `(` : This is the beginning of a 'capture group' -- this indicates which region of text will be saved and used to launch the browser.
@@ -325,4 +325,4 @@ Example:
325325

326326
```json
327327
"targetArchitecture": "arm64"
328-
```
328+
```

0 commit comments

Comments
 (0)