diff options
| author | Vincent LE GOFF <g_n_s@hotmail.fr> | 2019-04-04 11:58:16 +0200 |
|---|---|---|
| committer | Ryan Dahl <ry@tinyclouds.org> | 2019-04-04 05:58:16 -0400 |
| commit | 0ff0ba2b32113e4aa18fe9f35e0f9068cce3ba08 (patch) | |
| tree | 2655c6d2e0dbc8c0f2314da05165aa86b581a4c7 /fs | |
| parent | fd170692ddd48b66bac095db2c9d71fa89bdad43 (diff) | |
Fixing jsdoc example padding (denoland/deno_std#322)
Original: https://github.com/denoland/deno_std/commit/a0ff487a125254b02fb01126883f7d7798716200
Diffstat (limited to 'fs')
| -rw-r--r-- | fs/glob.ts | 23 |
1 files changed, 12 insertions, 11 deletions
diff --git a/fs/glob.ts b/fs/glob.ts index 4e1dedda9..e7e5aee21 100644 --- a/fs/glob.ts +++ b/fs/glob.ts @@ -22,18 +22,19 @@ export interface GlobOptions { * but can be used anywhere else. * Examples: * - * Looking for all the `ts` files: - * walkSync(".", { - * match: [glob("*.ts")] - * }) + * Looking for all the `ts` files: + * walkSync(".", { + * match: [glob("*.ts")] + * }) * - * Looking for all the `.json` files in any subfolder: - * walkSync(".", { - * match: [glob(join("a", "**", "*.json"),flags: "g", - * extended: true, - * globstar: true - * })] - * }) + * Looking for all the `.json` files in any subfolder: + * walkSync(".", { + * match: [glob(join("a", "**", "*.json"),{ + * flags: "g", + * extended: true, + * globstar: true + * })] + * }) * * @param glob - Glob pattern to be used * @param options - Specific options for the glob pattern |
