diff options
author | TED@Hexaflow <2466052+tedhexaflow@users.noreply.github.com> | 2021-07-03 01:26:20 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-07-02 20:26:20 +0200 |
commit | a70e2249cfcba0ae1d76fca764549031ed998369 (patch) | |
tree | 7e40ca0f729fc4e87962374828c7f7adcaf44938 | |
parent | 4ae50f5c067bf450b6287aaafd94b458ca8ecea7 (diff) |
doc: fix duplicated words 'use of use of' (#11230)
-rw-r--r-- | docs/typescript/configuration.md | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/docs/typescript/configuration.md b/docs/typescript/configuration.md index 752b6da71..5d62c1604 100644 --- a/docs/typescript/configuration.md +++ b/docs/typescript/configuration.md @@ -6,9 +6,9 @@ options frustrates that goal. To make things easier, Deno configures TypeScript to "just work" and shouldn't require additional configuration. That being said, Deno does support using a TypeScript configuration file, though -like the rest of Deno, the detection and use of use of a configuration file is -not automatic. To use a TypeScript configuration file with Deno, you have to -provide a path on the command line. For example: +like the rest of Deno, the detection and use of a configuration file is not +automatic. To use a TypeScript configuration file with Deno, you have to provide +a path on the command line. For example: ``` > deno run --config ./tsconfig.json main.ts |