Skip to content

Commit 1261b94

Browse files
committed
doc: fix unassigned deprecation code
Forgot to assign the deprecation code when landing 1f8d527 PR-URL: #15741 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Refael Ackermann <[email protected]> Reviewed-By: Tobias Nießen <[email protected]>
1 parent 7092a6c commit 1261b94

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

doc/api/deprecations.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -710,8 +710,8 @@ function for [`util.inspect()`][] is deprecated. Use [`util.inspect.custom`][]
710710
instead. For backwards compatibility with Node.js prior to version 6.4.0, both
711711
may be specified.
712712
713-
<a id="DEP00XX"></a>
714-
### DEP00XX: path.\_makeLong()
713+
<a id="DEP0080"></a>
714+
### DEP0080: path.\_makeLong()
715715
716716
Type: Documentation-only
717717

lib/path.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -1629,7 +1629,7 @@ const posix = {
16291629
posix.win32 = win32.win32 = win32;
16301630
posix.posix = win32.posix = posix;
16311631

1632-
// Legacy internal API, docs-only deprecated: DEP00XX
1632+
// Legacy internal API, docs-only deprecated: DEP0080
16331633
win32._makeLong = win32.toNamespacedPath;
16341634
posix._makeLong = posix.toNamespacedPath;
16351635

0 commit comments

Comments
 (0)