diff options
author | btoo <feihcsim824@gmail.com> | 2020-10-22 21:19:38 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-23 12:19:38 +1100 |
commit | 1d9c7a0a2219893203ae6631889aeb8d344c79ac (patch) | |
tree | 362d92d51c8712088b84e7c5956029cb6b23733b /std/path/README.md | |
parent | 7e2c7fb6c5454e30158d74e1a5786183ea391f07 (diff) |
docs(std/path): fix typo in globToRegExp docs (#8081)
Diffstat (limited to 'std/path/README.md')
-rw-r--r-- | std/path/README.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/std/path/README.md b/std/path/README.md index 8877b7b6f..c1debfc31 100644 --- a/std/path/README.md +++ b/std/path/README.md @@ -9,7 +9,7 @@ import * as path from "https://deno.land/std@$STD_VERSION/path/mod.ts"; ### globToRegExp Generate a regex based on glob pattern and options This was meant to be using -the the `fs.walk` function but can be used anywhere else. +the `fs.walk` function but can be used anywhere else. ```ts import { globToRegExp } from "https://deno.land/std@$STD_VERSION/path/glob.ts"; |