From 844f893e4e945a7d593c9af4719c74a218c557b0 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Fri, 7 Feb 2020 11:11:45 -1000 Subject: [PATCH] doc,util: revise util.md introductory paragraph Minor edits to improve introductory test for util module documentation. PR-URL: https://github.com/nodejs/node/pull/31685 Reviewed-By: James M Snell Reviewed-By: Ruben Bridgewater --- doc/api/util.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/util.md b/doc/api/util.md index 35287b84bf6640..8f3ec5754fddc5 100644 --- a/doc/api/util.md +++ b/doc/api/util.md @@ -4,9 +4,9 @@ > Stability: 2 - Stable -The `util` module is primarily designed to support the needs of Node.js' own -internal APIs. However, many of the utilities are useful for application and -module developers as well. It can be accessed using: +The `util` module supports the needs of Node.js internal APIs. Many of the +utilities are useful for application and module developers as well. To access +it: ```js const util = require('util');