1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-11-25 15:29:32 -05:00

docs(std/path): fix typo in globToRegExp docs (#8081)

This commit is contained in:
btoo 2020-10-22 21:19:38 -04:00 committed by GitHub
parent 7e2c7fb6c5
commit 1d9c7a0a22
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -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";