summaryrefslogtreecommitdiff
path: root/doc/api/assert.md
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2017-02-04 20:50:39 -0800
committerJames M Snell <jasnell@gmail.com>2017-02-07 15:29:15 -0800
commit2f1f48ac2ad2b75169b909d112d760ce68d01abc (patch)
tree884695c4d975cc2fbc01f2c4746d381d790af5ea /doc/api/assert.md
parent43346586352741bc250c50da08c4655fb01e9e1a (diff)
downloadnode-new-2f1f48ac2ad2b75169b909d112d760ce68d01abc.tar.gz
doc: remove extraneous paragraph from assert doc
The stability index is explained elsewhere in the documentation. It is not necessary to repeat the information about Locked stability index in the assert documentation. PR-URL: https://github.com/nodejs/node/pull/11174 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Sakthipriyan Vairamani <thechargingvolcano@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Michael Dawson <michael_dawson@ca.ibm.com>
Diffstat (limited to 'doc/api/assert.md')
-rw-r--r--doc/api/assert.md5
1 files changed, 0 insertions, 5 deletions
diff --git a/doc/api/assert.md b/doc/api/assert.md
index 2a5c583a7f..8c4279f5d0 100644
--- a/doc/api/assert.md
+++ b/doc/api/assert.md
@@ -5,10 +5,6 @@
The `assert` module provides a simple set of assertion tests that can be used to
test invariants.
-The API for the `assert` module is [Locked][]. This means that there will be no
-additions or changes to any of the methods implemented and exposed by the
-module.
-
## assert(value[, message])
<!-- YAML
added: v0.5.9
@@ -466,7 +462,6 @@ assert.throws(myFunction, 'missing foo', 'did not throw with expected message');
assert.throws(myFunction, /missing foo/, 'did not throw with expected message');
```
-[Locked]: documentation.html#documentation_stability_index
[`assert.deepEqual()`]: #assert_assert_deepequal_actual_expected_message
[`assert.deepStrictEqual()`]: #assert_assert_deepstrictequal_actual_expected_message
[`assert.ok()`]: #assert_assert_ok_value_message