From 68e1ba07d3d6716ff651fe6d379b46fb61253a1d Mon Sep 17 00:00:00 2001 From: tokiedokie Date: Tue, 18 Aug 2020 01:17:57 +0900 Subject: typos (#7082) --- docs/tools/debugger.md | 2 +- docs/tools/linter.md | 6 +++--- 2 files changed, 4 insertions(+), 4 deletions(-) (limited to 'docs/tools') 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 ` 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 -- cgit v1.2.3