Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRich Trott <rtrott@gmail.com>2020-03-08 04:35:00 +0300
committerRich Trott <rtrott@gmail.com>2020-03-10 05:47:29 +0300
commit73f2dbc911e16a3b50fc9a1236d9bed7d9e04d7a (patch)
treef0506435dfc933dadab47da13d42da04dc9a08ea /doc/api/policy.md
parentfb36266f28379fc7270a3d3e7423296e59e022b1 (diff)
doc: remove personal pronoun usage in policy.md
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 <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'doc/api/policy.md')
-rw-r--r--doc/api/policy.md6
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api/policy.md b/doc/api/policy.md
index bf4cc214552..35ea48b40b4 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');