Skip to content

Commit 25f3df4

Browse files
authored
fix: typo (#7786)
* fix: typo * fix: typo
1 parent e32a849 commit 25f3df4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

api/extension-guides/debugger-extension.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -165,7 +165,7 @@ about this can be found [here](https://microsoft.github.io/debug-adapter-protoco
165165

166166
## Anatomy of the package.json of a Debugger Extension
167167

168-
Besides providing a debugger-specific implementation of the debug adapter a debugger extension needs a `package.json` that contributes to the various debug-related contributions points.
168+
Besides providing a debugger-specific implementation of the debug adapter a debugger extension needs a `package.json` that contributes to the various debug-related contribution points.
169169

170170
So let's have a closer look at the `package.json` of Mock Debug.
171171

@@ -258,7 +258,7 @@ First, we use the **breakpoints** contribution point to list the languages for w
258258
Next is the **debuggers** section. Here, one debugger is introduced under a debug **type** `mock`. The user can reference this type in launch configurations. The optional attribute **label** can be used to give the debug type a nice name when showing it in the UI.
259259

260260
Since the debug extension uses a debug adapter, a relative path to its code is given as the **program** attribute.
261-
In order to make the extension self-contained the application must live inside the extension folder. By convention, we keep this applications inside a folder named `out` or `bin`, but you are free to use a different name.
261+
In order to make the extension self-contained the application must live inside the extension folder. By convention, we keep this application inside a folder named `out` or `bin`, but you are free to use a different name.
262262

263263
Since VS Code runs on different platforms, we have to make sure that the DA program supports the different platforms as well. For this we have the following options:
264264

0 commit comments

Comments
 (0)