From 5d58756b4192909789cc6260dbd319bb05f02d5c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Wed, 1 Feb 2017 16:01:33 -0800 Subject: [PATCH] doc: remove assertions about assert MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The assert docs have some language that suggests that we don't want bug fixes. We do. Send in bug fixes, please. (Just no new API features.) We'd love to not have assert in core at all, but that ship has sailed. It's here to stay. Let's at least make it not have surprising behaviors. Because we want good things for our users. PR-URL: https://github.com/nodejs/node/pull/11113 Reviewed-By: Italo A. Casas Reviewed-By: Timothy Gu Reviewed-By: Daniel Bevenius Reviewed-By: Joyee Cheung Reviewed-By: Gibson Fahnestock Reviewed-By: James M Snell Reviewed-By: Сковорода Никита Андреевич --- doc/api/assert.md | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/doc/api/assert.md b/doc/api/assert.md index 3db5f676886ca8..2a5c583a7fbfdc 100644 --- a/doc/api/assert.md +++ b/doc/api/assert.md @@ -3,14 +3,11 @@ > Stability: 3 - Locked The `assert` module provides a simple set of assertion tests that can be used to -test invariants. The module is intended for internal use by Node.js, but can be -used in application code via `require('assert')`. However, `assert` is not a -testing framework, and is not intended to be used as a general purpose assertion -library. +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. +additions or changes to any of the methods implemented and exposed by the +module. ## assert(value[, message])