Skip to content

Commit 75b5cbf

Browse files
Trottjoesepi
authored andcommitted
doc: remove "end user"
We use "end user" in ambiguous ways. Sometimes we mean the developer, and sometimes we mean the application user. Use "developer" where developer is meant. Refs: https://docs.microsoft.com/en-us/style-guide/a-z-word-list-term-collections/u/user-end-user PR-URL: nodejs#35200 Reviewed-By: Michaël Zasso <targos@protonmail.com> Reviewed-By: Daijiro Wachi <daijiro.wachi@gmail.com>
1 parent f6ea3a8 commit 75b5cbf

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

doc/api/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1744,7 +1744,7 @@ Type: Deprecation revoked
17441744

17451745
Importing assert directly was not recommended as the exposed functions use
17461746
loose equality checks. The deprecation was revoked because use of the `assert`
1747-
module is not discouraged, and the deprecation caused end user confusion.
1747+
module is not discouraged, and the deprecation caused developer confusion.
17481748

17491749
### DEP0090: Invalid GCM authentication tag lengths
17501750
<!-- YAML

doc/api/documentation.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -38,8 +38,8 @@ The stability indices are as follows:
3838
> priority.
3939
4040
Use caution when making use of Experimental features, particularly within
41-
modules. End users may not be aware that experimental features are being used.
42-
Bugs or behavior changes may surprise end users when Experimental API
41+
modules. Users may not be aware that experimental features are being used.
42+
Bugs or behavior changes may surprise users when Experimental API
4343
modifications occur. To avoid surprises, use of an Experimental feature may need
4444
a command-line flag. Experimental features may also emit a [warning][].
4545

doc/api/domain.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ changes:
2020
<!-- source_link=lib/domain.js -->
2121

2222
**This module is pending deprecation**. Once a replacement API has been
23-
finalized, this module will be fully deprecated. Most end users should
23+
finalized, this module will be fully deprecated. Most developers should
2424
**not** have cause to use this module. Users who absolutely must have
2525
the functionality that domains provide may rely on it for the time being
2626
but should expect to have to migrate to a different solution

doc/api/errors.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -224,7 +224,7 @@ above `constructorOpt`, including `constructorOpt`, will be omitted from the
224224
generated stack trace.
225225

226226
The `constructorOpt` argument is useful for hiding implementation
227-
details of error generation from an end user. For instance:
227+
details of error generation from the user. For instance:
228228

229229
```js
230230
function MyError() {

0 commit comments

Comments
 (0)