Skip to content

Commit

Permalink
Merge pull request #5215 from paddymorgan84/patch-1
Browse files Browse the repository at this point in the history
Fix small spelling mistake
  • Loading branch information
JoeRobich authored May 16, 2022
2 parents f66e2d6 + b998513 commit a1e98f9
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions debugger-launchjson.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ Notes about this:
5. The way this works is that VS Code will scrape the output which is set to the console. If a line
matches the pattern, it will launch a browser against the URL which was 'captured' by the pattern.
Here is an explanation of what the pattern does:
* `\\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`.
* `\\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`.
* `Now listening on:` : This is a string literal, meaning that the next text must be `Now listening on:`.
* `\\s+` : Matches one or more space characters.
* `(` : This is the beginning of a 'capture group' -- this indicates which region of text will be saved and used to launch the browser.
Expand Down Expand Up @@ -325,4 +325,4 @@ Example:

```json
"targetArchitecture": "arm64"
```
```

0 comments on commit a1e98f9

Please sign in to comment.