summaryrefslogtreecommitdiff
path: root/docs/tools
diff options
context:
space:
mode:
Diffstat (limited to 'docs/tools')
-rw-r--r--docs/tools/debugger.md2
-rw-r--r--docs/tools/linter.md6
2 files changed, 4 insertions, 4 deletions
diff --git a/docs/tools/debugger.md b/docs/tools/debugger.md
index 400d050de..2a4c7f0d8 100644
--- a/docs/tools/debugger.md
+++ b/docs/tools/debugger.md
@@ -32,7 +32,7 @@ Open `chrome://inspect` and click `Inspect` next to target:
![chrome://inspect](../images/debugger1.jpg)
-It might take a few seconds after opening the devtools to load all modules.
+It might take a few seconds after opening the Devtools to load all modules.
![Devtools opened](../images/debugger2.jpg)
diff --git a/docs/tools/linter.md b/docs/tools/linter.md
index fa8e4dd48..684da4a14 100644
--- a/docs/tools/linter.md
+++ b/docs/tools/linter.md
@@ -62,7 +62,7 @@ deno lint --unstable myfile1.ts myfile2.ts
#### Files
To ignore whole file `// deno-lint-ignore-file` directive should placed at the
-top of the file.
+top of the file:
```ts
// deno-lint-ignore-file
@@ -93,7 +93,7 @@ function foo(): any {
#### Diagnostics
To ignore certain diagnostic `// deno-lint-ignore <codes...>` directive should
-be placed before offending line. Specifying ignored rule name is required.
+be placed before offending line. Specifying ignored rule name is required:
```ts
// deno-lint-ignore no-explicit-any
@@ -109,7 +109,7 @@ function bar(a: any) {
To provide some compatibility with ESLint `deno lint` also supports
`// eslint-ignore-next-line` directive. Just like with `// deno-lint-ignore`,
-it's required to specify the ignored rule name.
+it's required to specify the ignored rule name:
```ts
// eslint-ignore-next-line no-empty