Skip to content

Commit fe293ed

Browse files
committed
Remove word
1 parent 1947463 commit fe293ed

File tree

9 files changed

+9
-9
lines changed

9 files changed

+9
-9
lines changed

lib/node_modules/@stdlib/_tools/pkgs/addons/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function onAddons( error, pkgs ) {
2727

2828
The function accepts the following `options`:
2929

30-
- **dir**: root directory from which to search for [add-ons][node-add-ons]. May be either an absolute file path or a path relative to the current working directory. Default: current working directory.
30+
- **dir**: root directory from which to search for [add-ons][node-add-ons]. May be either an absolute path or a path relative to the current working directory. Default: current working directory.
3131
- **pattern**: glob pattern used to find [add-ons][node-add-ons]. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
3232
- **ignore**: list of glob patterns used to exclude matches.
3333

lib/node_modules/@stdlib/_tools/pkgs/browser-compatible/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function onList( error, names ) {
2727

2828
The function accepts the following `options`:
2929

30-
- **dir**: root directory from which to search for packages. May be either an absolute file path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
30+
- **dir**: root directory from which to search for packages. May be either an absolute path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
3131
- **pattern**: glob pattern used to find packages. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
3232
- **ignore**: list of glob patterns used to exclude matches.
3333

lib/node_modules/@stdlib/_tools/pkgs/clis/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function onCLIs( error, files ) {
2727

2828
The function accepts the following `options`:
2929

30-
- **dir**: root directory from which to search for packages. May be either an absolute file path or a path relative to the current working directory. Default: current working directory.
30+
- **dir**: root directory from which to search for packages. May be either an absolute path or a path relative to the current working directory. Default: current working directory.
3131
- **pattern**: glob pattern used to find packages. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
3232
- **ignore**: list of glob patterns used to exclude matches.
3333

lib/node_modules/@stdlib/_tools/pkgs/deps/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Each package is represented by an `object` having the following fields:
3838

3939
The function accepts the following `options`:
4040

41-
- **dir**: root directory from which to resolve packages. May be either an absolute file path or a path relative to the current working directory.
41+
- **dir**: root directory from which to resolve packages. May be either an absolute path or a path relative to the current working directory.
4242
- **builtins**: `boolean` indicating whether to include built-in package dependencies. Default: `false`.
4343
- **dev**: `boolean` indicating whether to resolve dev dependencies. Default: `false`.
4444

lib/node_modules/@stdlib/_tools/pkgs/entry-points/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ Each package is represented by an `object` having the following fields:
3838

3939
The function accepts the following `options`:
4040

41-
- **dir**: root directory from which to resolve packages. May be either an absolute file path or a path relative to the current working directory.
41+
- **dir**: root directory from which to resolve packages. May be either an absolute path or a path relative to the current working directory.
4242

4343
By default, the function resolves packages relative to the current working directory. To resolve relative to an alternative directory, set the `dir` option.
4444

lib/node_modules/@stdlib/_tools/pkgs/names/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function onList( error, names ) {
2727

2828
The function accepts the following `options`:
2929

30-
- **dir**: root directory from which to search for packages. May be either an absolute file path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
30+
- **dir**: root directory from which to search for packages. May be either an absolute path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
3131
- **pattern**: glob pattern used to find packages. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
3232
- **ignore**: list of glob patterns used to exclude matches.
3333

lib/node_modules/@stdlib/_tools/pkgs/namespaces/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function onList( error, names ) {
2727

2828
The function accepts the following `options`:
2929

30-
- **dir**: root directory from which to search for namespaces. May be either an absolute file path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
30+
- **dir**: root directory from which to search for namespaces. May be either an absolute path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
3131
- **pattern**: glob pattern used to find namespaces. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
3232
- **ignore**: list of glob patterns used to exclude matches.
3333

lib/node_modules/@stdlib/_tools/pkgs/tree/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function onTree( error, tree ) {
2727

2828
The function accepts the following `options`:
2929

30-
- **dir**: root directory from which to search for packages. May be either an absolute file path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
30+
- **dir**: root directory from which to search for packages. May be either an absolute path or a path relative to the `stdlib/lib/node_modules/` directory. Default: `/path/to/stdlib/lib/node_modules/`.
3131
- **pattern**: glob pattern used to find packages. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
3232
- **ignore**: list of glob patterns used to exclude matches.
3333

lib/node_modules/@stdlib/_tools/pkgs/wasm/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ function onPkgs( error, pkgs ) {
2727

2828
The function accepts the following `options`:
2929

30-
- **dir**: root directory from which to search for packages containing [WebAssembly][webassembly]. May be either an absolute file path or a path relative to the current working directory. Default: current working directory.
30+
- **dir**: root directory from which to search for packages containing [WebAssembly][webassembly]. May be either an absolute path or a path relative to the current working directory. Default: current working directory.
3131
- **pattern**: glob pattern used to find packages containing [WebAssembly][webassembly]. Default: `'**/package.json'` (note: pattern **must** end with `package.json`).
3232
- **ignore**: list of glob patterns used to exclude matches.
3333

0 commit comments

Comments
 (0)