Skip to content

Commit

Permalink
doc,assert: use code markup/markdown in headers
Browse files Browse the repository at this point in the history
Backport-PR-URL: #31108
PR-URL: #31086
Reviewed-By: Anna Henningsen <anna@addaleax.net>
Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
  • Loading branch information
Trott authored and BethGriggs committed Feb 6, 2020
1 parent b5a19bc commit 2885bdb
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions doc/api/assert.md
Expand Up @@ -15,7 +15,7 @@ lenient legacy mode.
Indicates the failure of an assertion. All errors thrown by the `assert` module
will be instances of the `AssertionError` class.

### new assert.AssertionError(options)
### `new assert.AssertionError(options)`
<!-- YAML
added: v0.1.21
-->
Expand Down Expand Up @@ -146,7 +146,7 @@ lax:
assert.deepEqual(/a/gi, new Date());
```

## assert(value\[, message\])
## `assert(value[, message])`
<!-- YAML
added: v0.5.9
-->
Expand All @@ -156,7 +156,7 @@ added: v0.5.9

An alias of [`assert.ok()`][].

## assert.deepEqual(actual, expected\[, message\])
## `assert.deepEqual(actual, expected[, message])`
<!-- YAML
added: v0.1.21
changes:
Expand Down Expand Up @@ -270,7 +270,7 @@ parameter is undefined, a default error message is assigned. If the `message`
parameter is an instance of an [`Error`][] then it will be thrown instead of the
`AssertionError`.

## assert.deepStrictEqual(actual, expected\[, message\])
## `assert.deepStrictEqual(actual, expected[, message])`
<!-- YAML
added: v1.2.0
changes:
Expand Down Expand Up @@ -424,7 +424,7 @@ parameter is undefined, a default error message is assigned. If the `message`
parameter is an instance of an [`Error`][] then it will be thrown instead of the
`AssertionError`.

## assert.doesNotReject(asyncFn\[, error\]\[, message\])
## `assert.doesNotReject(asyncFn[, error][, message])`
<!-- YAML
added: v10.0.0
-->
Expand Down Expand Up @@ -474,7 +474,7 @@ assert.doesNotReject(Promise.reject(new TypeError('Wrong value')))
});
```

## assert.doesNotThrow(fn\[, error\]\[, message\])
## `assert.doesNotThrow(fn[, error][, message])`
<!-- YAML
added: v0.1.21
changes:
Expand Down Expand Up @@ -550,7 +550,7 @@ assert.doesNotThrow(
// Throws: AssertionError: Got unwanted exception: Whoops
```

## assert.equal(actual, expected\[, message\])
## `assert.equal(actual, expected[, message])`
<!-- YAML
added: v0.1.21
-->
Expand Down Expand Up @@ -590,7 +590,7 @@ parameter is undefined, a default error message is assigned. If the `message`
parameter is an instance of an [`Error`][] then it will be thrown instead of the
`AssertionError`.

## assert.fail(\[message\])
## `assert.fail([message])`
<!-- YAML
added: v0.1.21
-->
Expand All @@ -617,7 +617,7 @@ assert.fail(new TypeError('need array'));
Using `assert.fail()` with more than two arguments is possible but deprecated.
See below for further details.

## assert.fail(actual, expected\[, message\[, operator\[, stackStartFn\]\]\])
## `assert.fail(actual, expected[, message[, operator[, stackStartFn]]])`
<!-- YAML
added: v0.1.21
changes:
Expand Down Expand Up @@ -680,7 +680,7 @@ suppressFrame();
// ...
```

## assert.ifError(value)
## `assert.ifError(value)`
<!-- YAML
added: v0.1.97
changes:
Expand Down Expand Up @@ -727,7 +727,7 @@ let err;
// at errorFrame
```

## assert.notDeepEqual(actual, expected\[, message\])
## `assert.notDeepEqual(actual, expected[, message])`
<!-- YAML
added: v0.1.21
changes:
Expand Down Expand Up @@ -801,7 +801,7 @@ parameter is undefined, a default error message is assigned. If the `message`
parameter is an instance of an [`Error`][] then it will be thrown instead of the
`AssertionError`.

## assert.notDeepStrictEqual(actual, expected\[, message\])
## `assert.notDeepStrictEqual(actual, expected[, message])`
<!-- YAML
added: v1.2.0
changes:
Expand Down Expand Up @@ -849,7 +849,7 @@ a `message` property set equal to the value of the `message` parameter. If the
`message` parameter is an instance of an [`Error`][] then it will be thrown
instead of the `AssertionError`.

## assert.notEqual(actual, expected\[, message\])
## `assert.notEqual(actual, expected[, message])`
<!-- YAML
added: v0.1.21
-->
Expand Down Expand Up @@ -888,7 +888,7 @@ undefined, a default error message is assigned. If the `message` parameter is an
instance of an [`Error`][] then it will be thrown instead of the
`AssertionError`.

## assert.notStrictEqual(actual, expected\[, message\])
## `assert.notStrictEqual(actual, expected[, message])`
<!-- YAML
added: v0.1.21
changes:
Expand Down Expand Up @@ -925,7 +925,7 @@ parameter is undefined, a default error message is assigned. If the `message`
parameter is an instance of an [`Error`][] then it will be thrown instead of the
`AssertionError`.

## assert.ok(value\[, message\])
## `assert.ok(value[, message])`
<!-- YAML
added: v0.1.21
changes:
Expand Down Expand Up @@ -993,7 +993,7 @@ assert(0);
// assert(0)
```

## assert.rejects(asyncFn\[, error\]\[, message\])
## `assert.rejects(asyncFn[, error][, message])`
<!-- YAML
added: v10.0.0
-->
Expand Down Expand Up @@ -1052,7 +1052,7 @@ argument, then `error` is assumed to be omitted and the string will be used for
example in [`assert.throws()`][] carefully if using a string as the second
argument gets considered.

## assert.strictEqual(actual, expected\[, message\])
## `assert.strictEqual(actual, expected[, message])`
<!-- YAML
added: v0.1.21
changes:
Expand Down Expand Up @@ -1102,7 +1102,7 @@ If the values are not strictly equal, an `AssertionError` is thrown with a
`message` parameter is an instance of an [`Error`][] then it will be thrown
instead of the `AssertionError`.

## assert.throws(fn\[, error\]\[, message\])
## `assert.throws(fn[, error][, message])`
<!-- YAML
added: v0.1.21
changes:
Expand Down

0 comments on commit 2885bdb

Please sign in to comment.