diff options
author | uki00a <uki00a@gmail.com> | 2020-07-02 22:16:07 +0900 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-02 09:16:07 -0400 |
commit | 74cd91ee566f9d41324de7c771002dfb8d43bd98 (patch) | |
tree | 79876513299897ec0dd0042ea7b8eac7efd470ea /docs/tools/documentation_generator.md | |
parent | 55c234af973496abdb8df4c837c204062d71c96c (diff) |
typo (#6598)
Diffstat (limited to 'docs/tools/documentation_generator.md')
-rw-r--r-- | docs/tools/documentation_generator.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/tools/documentation_generator.md b/docs/tools/documentation_generator.md index 661fa22e5..9971ed270 100644 --- a/docs/tools/documentation_generator.md +++ b/docs/tools/documentation_generator.md @@ -2,7 +2,7 @@ `deno doc` followed by a list of one or more source files will print the JSDoc documentation for each of the module's **exported** members. Currently, only -exports in the style `export <declaration>` and `export ... from ...` are are +exports in the style `export <declaration>` and `export ... from ...` are supported. For example, given a file `add.ts` with the contents: |