From 79d4f285be12b7c6e8064c721dc1be09cf251c6c Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sun, 2 Jun 2019 17:32:04 +0200 Subject: [PATCH] doc: remove "strongly recommended" hedging in deprecations.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/28031 Reviewed-By: Ruben Bridgewater Reviewed-By: Anna Henningsen Reviewed-By: Michaƫl Zasso Reviewed-By: Luigi Pinca Reviewed-By: Colin Ihrig Reviewed-By: Trivikram Kamat --- doc/api/deprecations.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 9773c4069f61c6..d40cf903dfd42a 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -134,10 +134,10 @@ changes: Type: Runtime (supports [`--pending-deprecation`][]) The `Buffer()` function and `new Buffer()` constructor are deprecated due to -API usability issues that can potentially lead to accidental security issues. +API usability issues that can lead to accidental security issues. -As an alternative, use of the following methods of constructing `Buffer` objects -is strongly recommended: +As an alternative, use one of the following methods of constructing `Buffer` +objects: * [`Buffer.alloc(size[, fill[, encoding]])`][alloc] - Create a `Buffer` with *initialized* memory.