doc: fix unassigned deprecation code

Forgot to assign the deprecation code when landing
1f8d527e94ad97e7db14d18406fe0e12983358cb

PR-URL: https://github.com/nodejs/node/pull/15741
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Refael Ackermann <refack@gmail.com>
Reviewed-By: Tobias Nießen <tniessen@tnie.de>
This commit is contained in:
James M Snell 2017-10-02 12:39:41 -07:00
parent 7092a6ca93
commit 1261b94a3f
2 changed files with 3 additions and 3 deletions

View File

@ -710,8 +710,8 @@ function for [`util.inspect()`][] is deprecated. Use [`util.inspect.custom`][]
instead. For backwards compatibility with Node.js prior to version 6.4.0, both
may be specified.
<a id="DEP00XX"></a>
### DEP00XX: path.\_makeLong()
<a id="DEP0080"></a>
### DEP0080: path.\_makeLong()
Type: Documentation-only

View File

@ -1629,7 +1629,7 @@ const posix = {
posix.win32 = win32.win32 = win32;
posix.posix = win32.posix = posix;
// Legacy internal API, docs-only deprecated: DEP00XX
// Legacy internal API, docs-only deprecated: DEP0080
win32._makeLong = win32.toNamespacedPath;
posix._makeLong = posix.toNamespacedPath;