Skip to content

Commit ccfd9d9

Browse files
MikeMcC399aduh95
authored andcommitted
doc: remove v prefix for version references
PR-URL: #61488 Reviewed-By: Antoine du Hamel <duhamelantoine1995@gmail.com> Reviewed-By: Jacob Smith <jacob@frende.me> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
1 parent b6cc5d7 commit ccfd9d9

File tree

8 files changed

+9
-9
lines changed

8 files changed

+9
-9
lines changed

BUILDING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -741,7 +741,7 @@ Refs:
741741
[Visual Studio 2022 (17.13 or newer)](https://visualstudio.microsoft.com/downloads/)
742742
or the "C++ build tools" workload from the
743743
[Build Tools](https://aka.ms/vs/17/release/vs_buildtools.exe),
744-
with the default optional components. Starting with Node.js v24, ClangCL is required to compile
744+
with the default optional components. As of Node.js 24.0.0, ClangCL is required to compile
745745
on Windows. To enable it, two additional components are needed:
746746
* C++ Clang Compiler for Windows (Microsoft.VisualStudio.Component.VC.Llvm.Clang)
747747
* MSBuild support for LLVM toolset (Microsoft.VisualStudio.Component.VC.Llvm.ClangToolset)

doc/api/crypto.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6013,7 +6013,7 @@ binary data. As such, many `crypto` classes have methods not
60136013
typically found on other Node.js classes that implement the [streams][stream]
60146014
API (e.g. `update()`, `final()`, or `digest()`). Also, many methods accepted
60156015
and returned `'latin1'` encoded strings by default rather than `Buffer`s. This
6016-
default was changed after Node.js v0.8 to use [`Buffer`][] objects by default
6016+
default was changed in Node.js 0.9.3 to use [`Buffer`][] objects by default
60176017
instead.
60186018

60196019
### Support for weak or compromised algorithms

doc/api/deprecations.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -273,7 +273,7 @@ in Node.js 6.0 because the method defaulted to using the non-recommended
273273
Node.js 8.0.0, calling `crypto.pbkdf2()` or `crypto.pbkdf2Sync()` with
274274
`digest` set to `undefined` will throw a `TypeError`.
275275

276-
Beginning in Node.js v11.0.0, calling these functions with `digest` set to
276+
Beginning in Node.js 11.0.0, calling these functions with `digest` set to
277277
`null` would print a deprecation warning to align with the behavior when `digest`
278278
is `undefined`.
279279

@@ -509,7 +509,7 @@ changes:
509509

510510
Type: End-of-Life
511511

512-
The `Server.connections` property was deprecated in Node.js v0.9.7 and has
512+
The `Server.connections` property was deprecated in Node.js 0.9.7 and has
513513
been removed. Please use the [`Server.getConnections()`][] method instead.
514514

515515
### DEP0021: `Server.listenFD`

doc/api/errors.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3868,7 +3868,7 @@ removed: v15.0.0
38683868
-->
38693869

38703870
This error code was replaced by [`ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST`][]
3871-
in Node.js v15.0.0, because it is no longer accurate as other types of
3871+
in Node.js 15.0.0, because it is no longer accurate as other types of
38723872
transferable objects also exist now.
38733873

38743874
<a id="ERR_MISSING_TRANSFERABLE_IN_TRANSFER_LIST"></a>

doc/api/process.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4249,7 +4249,7 @@ When a new value is assigned, different platforms will impose different maximum
42494249
length restrictions on the title. Usually such restrictions are quite limited.
42504250
For instance, on Linux and macOS, `process.title` is limited to the size of the
42514251
binary name plus the length of the command-line arguments because setting the
4252-
`process.title` overwrites the `argv` memory of the process. Node.js v0.8
4252+
`process.title` overwrites the `argv` memory of the process. Node.js 0.8
42534253
allowed for longer process title strings by also overwriting the `environ`
42544254
memory but that was potentially insecure and confusing in some (rather obscure)
42554255
cases.

doc/api/util.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3452,7 +3452,7 @@ deprecated: v24.2.0
34523452
34533453
> Stability: 0 - Deprecated: Use [`Error.isError`][] instead.
34543454
3455-
**Note:** As of Node.js v24, `Error.isError()` is currently slower than `util.types.isNativeError()`.
3455+
**Note:** As of Node.js 24, `Error.isError()` is currently slower than `util.types.isNativeError()`.
34563456
If performance is critical, consider benchmarking both in your environment.
34573457
34583458
* `value` {any}

doc/contributing/distribution.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,4 +28,4 @@ that doing so is not a breaking change.
2828

2929
## History
3030

31-
* [corepack](https://github.com/nodejs/corepack) was added in Node.js v14.9.0 and v16.9.0. It is no longer distributed as of Node.js v25.0.0.
31+
* [corepack](https://github.com/nodejs/corepack) was added in Node.js 14.9.0 and 16.9.0. It is no longer distributed as of Node.js 25.0.0.

tools/icu/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ Both V8 and Node.js use ICU to provide internationalization functionality.
1919

2020
Note:
2121

22-
> The files in this directory were written for the Node.js v0.12 effort.
22+
> The files in this directory were written for the Node.js 0.12 effort.
2323
> The original intent was to merge the tools such as `icutrim.py` and `iculslocs.cc`
2424
> back into ICU. ICU has gained its own “data slicer” tool.
2525
> There is an issue open, <https://github.com/nodejs/node/issues/25136>

0 commit comments

Comments
 (0)