Skip to content

Commit b54f877

Browse files
author
Amanda Butler
authored
Copy edit vs_code.md
Update final list formatting because numbered lists indicate steps that must occur in order, and bulleted lists indicate steps for which order doesn't matter.
1 parent d5f260e commit b54f877

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

docs/tutorials/debug/vs_code.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -76,13 +76,13 @@ To configure the debugger for your project:
7676

7777
Visual Studio Code uses `make` to build your application by default. You can also build with Mbed CLI. To do this:
7878

79-
- In `.vscode/tasks.json`, replace every instance (4 times) of `make` with `mbed`.
80-
- In `.vscode/tasks.json`, change `args` to:
79+
1. In `.vscode/tasks.json`, replace every instance (4 times) of `make` with `mbed`.
80+
1. In `.vscode/tasks.json`, change `args` to:
8181

8282
```
8383
"args": ["compile", "--profile=debug", "-t", "GCC_ARM", "-m", "YOUR_TARGET"],
8484
```
8585
86-
- In `.vscode/launch.json`, replace every instance (twice) of `make` with `mbed`.
87-
- In `.vscode/launch.json`, change `${workspaceRoot}/BUILD/` (twice) to `${workspaceRoot}/BUILD/YOUR_TARGET/GCC_ARM/`.
88-
- In `.vscode/launch.json`, change `${workspaceRoot}\\BUILD` to `${workspaceRoot}\\BUILD\\YOUR_TARGET\\GCC_ARM`.
86+
1. In `.vscode/launch.json`, replace every instance (twice) of `make` with `mbed`.
87+
1. In `.vscode/launch.json`, change `${workspaceRoot}/BUILD/` (twice) to `${workspaceRoot}/BUILD/YOUR_TARGET/GCC_ARM/`.
88+
1. In `.vscode/launch.json`, change `${workspaceRoot}\\BUILD` to `${workspaceRoot}\\BUILD\\YOUR_TARGET\\GCC_ARM`.

0 commit comments

Comments
 (0)