diff options
author | Josh Pullen <JoshPullen27@gmail.com> | 2019-08-31 01:16:14 -0400 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-08-31 01:16:14 -0400 |
commit | 54a3b54138df607585061854ca27282a6cf15c07 (patch) | |
tree | e852c2cc33787ce11fbd1d98556a888467a2978f | |
parent | 723284fd20bb320fc1c5c1c53d0617c1d4169c25 (diff) |
Fix small typo (effects -> affects) (#2841)
-rw-r--r-- | website/manual.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/website/manual.md b/website/manual.md index a3678ca4a..317d6b546 100644 --- a/website/manual.md +++ b/website/manual.md @@ -598,7 +598,7 @@ hint looks like this: import * as foo from "./foo.js"; ``` -Where the hint effects the next `import` statement (or `export ... from` +Where the hint affects the next `import` statement (or `export ... from` statement) where the value of the `@deno-types` will be substituted at compile time instead of the specified module. Like in the above example, the Deno compiler will load `./foo.d.ts` instead of `./foo.js`. Deno will still load |