1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2024-12-24 08:09:08 -05:00

Fixing jsdoc example padding (denoland/deno_std#322)

Original: a0ff487a12
This commit is contained in:
Vincent LE GOFF 2019-04-04 11:58:16 +02:00 committed by Ryan Dahl
parent fd170692dd
commit 0ff0ba2b32
2 changed files with 21 additions and 20 deletions

View file

@ -29,7 +29,8 @@ export interface GlobOptions {
*
* Looking for all the `.json` files in any subfolder:
* walkSync(".", {
* match: [glob(join("a", "**", "*.json"),flags: "g",
* match: [glob(join("a", "**", "*.json"),{
* flags: "g",
* extended: true,
* globstar: true
* })]