Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
doc: add missing deprecation code
  • Loading branch information
cjihrig committed Oct 2, 2019
commit 5c3c1a8c1db90bf0b7f8f4be073d491192ca881f
4 changes: 2 additions & 2 deletions doc/api/deprecations.md
Original file line number Diff line number Diff line change
Expand Up @@ -2519,8 +2519,8 @@ Type: Documentation-only
Prefer [`response.socket`][] over [`response.connection`] and
[`request.socket`][] over [`request.connection`].

<a id="DEP0XXX"></a>
### DEP0XXX: process._tickCallback
<a id="DEP0134"></a>
### DEP0134: process._tickCallback
<!-- YAML
changes:
- version: REPLACEME
Expand Down
2 changes: 1 addition & 1 deletion lib/internal/bootstrap/pre_execution.js
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ function initializeDeprecations() {

process._tickCallback = deprecate(process._tickCallback,
'process._tickCallback() is deprecated',
'DEP0XXX');
'DEP0134');
}

// Create global.process and global.Buffer as getters so that we have a
Expand Down