Skip to content

Commit ff78d56

Browse files
committed
fix lint md
1 parent 8ef7cd8 commit ff78d56

File tree

1 file changed

+26
-26
lines changed

1 file changed

+26
-26
lines changed

doc/api/globals.md

Lines changed: 26 additions & 26 deletions
Original file line numberDiff line numberDiff line change
@@ -9,11 +9,11 @@ These objects are available in all modules.
99
The following variables may appear to be global but are not. They exist only in
1010
the scope of [CommonJS modules][]:
1111

12-
- [`__dirname`][]
13-
- [`__filename`][]
14-
- [`exports`][]
15-
- [`module`][]
16-
- [`require()`][]
12+
* [`__dirname`][]
13+
* [`__filename`][]
14+
* [`exports`][]
15+
* [`module`][]
16+
* [`require()`][]
1717

1818
The objects listed here are specific to Node.js. There are [built-in objects][]
1919
that are part of the JavaScript language itself, which are also globally
@@ -62,7 +62,7 @@ changes:
6262
description: Added the new optional reason argument.
6363
-->
6464

65-
- `reason` {any} An optional reason, retrievable on the `AbortSignal`'s
65+
* `reason` {any} An optional reason, retrievable on the `AbortSignal`'s
6666
`reason` property.
6767

6868
Triggers the abort signal, causing the `abortController.signal` to emit
@@ -76,7 +76,7 @@ added:
7676
- v14.17.0
7777
-->
7878

79-
- Type: {AbortSignal}
79+
* Type: {AbortSignal}
8080

8181
### Class: `AbortSignal`
8282

@@ -86,7 +86,7 @@ added:
8686
- v14.17.0
8787
-->
8888

89-
- Extends: {EventTarget}
89+
* Extends: {EventTarget}
9090

9191
The `AbortSignal` is used to notify observers when the
9292
`abortController.abort()` method is called.
@@ -105,8 +105,8 @@ changes:
105105
description: Added the new optional reason argument.
106106
-->
107107

108-
- `reason`: {any}
109-
- Returns: {AbortSignal}
108+
* `reason`: {any}
109+
* Returns: {AbortSignal}
110110

111111
Returns a new already aborted `AbortSignal`.
112112

@@ -118,7 +118,7 @@ added:
118118
- v16.14.0
119119
-->
120120

121-
- `delay` {number} The number of milliseconds to wait before triggering
121+
* `delay` {number} The number of milliseconds to wait before triggering
122122
the AbortSignal.
123123

124124
Returns a new `AbortSignal` which will be aborted in `delay` milliseconds.
@@ -131,7 +131,7 @@ added:
131131
- v18.17.0
132132
-->
133133

134-
- `signals` {AbortSignal\[]} The `AbortSignal`s of which to compose a new `AbortSignal`.
134+
* `signals` {AbortSignal\[]} The `AbortSignal`s of which to compose a new `AbortSignal`.
135135

136136
Returns a new `AbortSignal` which will be aborted if any of the provided
137137
signals are aborted. Its [`abortSignal.reason`][] will be set to whichever
@@ -186,7 +186,7 @@ added:
186186
- v14.17.0
187187
-->
188188

189-
- Type: {boolean} True after the `AbortController` has been aborted.
189+
* Type: {boolean} True after the `AbortController` has been aborted.
190190

191191
#### `abortSignal.onabort`
192192

@@ -196,7 +196,7 @@ added:
196196
- v14.17.0
197197
-->
198198

199-
- Type: {Function}
199+
* Type: {Function}
200200

201201
An optional callback function that may be set by user code to be notified
202202
when the `abortController.abort()` function has been called.
@@ -209,7 +209,7 @@ added:
209209
- v16.14.0
210210
-->
211211

212-
- Type: {any}
212+
* Type: {any}
213213

214214
An optional reason specified when the `AbortSignal` was triggered.
215215

@@ -247,7 +247,7 @@ added: v0.1.103
247247

248248
<!-- type=global -->
249249

250-
- {Function}
250+
* {Function}
251251

252252
Used to handle binary data. See the [buffer section][].
253253

@@ -358,7 +358,7 @@ added: v0.1.100
358358

359359
<!-- type=global -->
360360

361-
- {Object}
361+
* {Object}
362362

363363
Used to print to stdout and stderr. See the [`console`][] section.
364364

@@ -558,7 +558,7 @@ added: v0.1.27
558558

559559
> Stability: 3 - Legacy. Use [`globalThis`][] instead.
560560
561-
- {Object} The global namespace object.
561+
* {Object} The global namespace object.
562562

563563
In browsers, the top-level scope has traditionally been the global scope. This
564564
means that `var something` will define a new global variable, except within
@@ -665,7 +665,7 @@ A partial implementation of [`window.navigator`][].
665665
added: v21.0.0
666666
-->
667667

668-
- {number}
668+
* {number}
669669

670670
The `navigator.hardwareConcurrency` read-only property returns the number of
671671
logical processors available to the current Node.js instance.
@@ -682,7 +682,7 @@ console.log(
682682
added: v21.2.0
683683
-->
684684

685-
- {string}
685+
* {string}
686686

687687
The `navigator.language` read-only property returns a string representing the
688688
preferred language of the Node.js instance. The language will be determined by
@@ -705,7 +705,7 @@ console.log(
705705
added: v21.2.0
706706
-->
707707

708-
- {Array<string>}
708+
* {Array<string>}
709709

710710
The `navigator.languages` read-only property returns an array of strings
711711
representing the preferred languages of the Node.js instance.
@@ -725,7 +725,7 @@ console.log(`The preferred languages are '${navigator.languages}'`);
725725
added: v21.2.0
726726
-->
727727

728-
- {string}
728+
* {string}
729729

730730
The `navigator.platform` read-only property returns a string identifying the
731731
platform on which the Node.js instance is running.
@@ -740,7 +740,7 @@ console.log(`This process is running on ${navigator.platform}`);
740740
added: v21.1.0
741741
-->
742742

743-
- {string}
743+
* {string}
744744

745745
The `navigator.userAgent` read-only property returns user agent
746746
consisting of the runtime name and major version number.
@@ -827,7 +827,7 @@ added: v0.1.7
827827

828828
<!-- type=global -->
829829

830-
- {Object}
830+
* {Object}
831831

832832
The process object. See the [`process` object][] section.
833833

@@ -839,7 +839,7 @@ added: v11.0.0
839839

840840
<!-- type=global -->
841841

842-
- `callback` {Function} Function to be queued.
842+
* `callback` {Function} Function to be queued.
843843

844844
The `queueMicrotask()` method queues a microtask to invoke `callback`. If
845845
`callback` throws an exception, the [`process` object][] `'uncaughtException'`
@@ -1157,7 +1157,7 @@ added: v8.0.0
11571157

11581158
<!-- type=global -->
11591159

1160-
- {Object}
1160+
* {Object}
11611161

11621162
The object that acts as the namespace for all W3C
11631163
[WebAssembly][webassembly-org] related functionality. See the

0 commit comments

Comments
 (0)