From 7de4dfba79cc58906dfc5874ba60388f23e54d19 Mon Sep 17 00:00:00 2001 From: Rich Trott Date: Sat, 7 Mar 2020 17:35:00 -0800 Subject: [PATCH] doc: remove personal pronoun usage in policy.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Per our style guide, avoid personal pronouns (I, you, we, etc.) in reference documentation. PR-URL: https://github.com/nodejs/node/pull/32142 Reviewed-By: Tobias Nießen Reviewed-By: Ruben Bridgewater Reviewed-By: Trivikram Kamat --- doc/api/policy.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/policy.md b/doc/api/policy.md index bf4cc214552eff..35ea48b40b410e 100644 --- a/doc/api/policy.md +++ b/doc/api/policy.md @@ -166,9 +166,9 @@ only with care after auditing a module to ensure its behavior is valid. #### Example: Patched Dependency -Since a dependency can be redirected, you can provide attenuated or modified -forms of dependencies as fits your application. For example, you could log -data about timing of function durations by wrapping the original: +Redirected dependencies can provide attenuated or modified functionality as fits +the application. For example, log data about timing of function durations by +wrapping the original: ```js const original = require('fn');