From d0413ae8f92aa0591506ff115f21ec0ae2591e62 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 9f48a5b8fd72e0..151e4769930280 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');