From 976ed7507b3fec112a514b36da82622eadafacb9 Mon Sep 17 00:00:00 2001 From: Luigi Pinca Date: Sat, 4 Nov 2017 09:08:46 +0100 Subject: [PATCH] doc: add missing introduced_in comments Add missing "introduced_in" comments for alternative version links. PR-URL: https://github.com/nodejs/node/pull/16741 Reviewed-By: Anatoli Papirovski --- doc/api/async_hooks.md | 2 ++ doc/api/deprecations.md | 2 ++ doc/api/esm.md | 2 +- doc/api/http2.md | 2 ++ doc/api/inspector.md | 2 ++ doc/api/intl.md | 2 ++ doc/api/n-api.md | 2 ++ doc/api/perf_hooks.md | 5 ++--- doc/api/tracing.md | 2 ++ 9 files changed, 17 insertions(+), 4 deletions(-) diff --git a/doc/api/async_hooks.md b/doc/api/async_hooks.md index bc90b1683773b6..41352820816b3f 100644 --- a/doc/api/async_hooks.md +++ b/doc/api/async_hooks.md @@ -1,5 +1,7 @@ # Async Hooks + + > Stability: 1 - Experimental The `async_hooks` module provides an API to register callbacks tracking the diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index b8170f1e440309..adef224f982e64 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -1,5 +1,7 @@ # Deprecated APIs + + Node.js may deprecate APIs when either: (a) use of the API is considered to be unsafe, (b) an improved alternative API has been made available, or (c) breaking changes to the API are expected in a future major release. diff --git a/doc/api/esm.md b/doc/api/esm.md index d8143da378f768..c33badf3af7fc9 100644 --- a/doc/api/esm.md +++ b/doc/api/esm.md @@ -1,6 +1,6 @@ # ECMAScript Modules - + > Stability: 1 - Experimental diff --git a/doc/api/http2.md b/doc/api/http2.md index 231173bededf35..364c1650ee501e 100644 --- a/doc/api/http2.md +++ b/doc/api/http2.md @@ -1,5 +1,7 @@ # HTTP2 + + > Stability: 1 - Experimental The `http2` module provides an implementation of the [HTTP/2][] protocol. It diff --git a/doc/api/inspector.md b/doc/api/inspector.md index 32629af8c2fab0..a3426d4b5d9dc8 100644 --- a/doc/api/inspector.md +++ b/doc/api/inspector.md @@ -1,5 +1,7 @@ # Inspector + + > Stability: 1 - Experimental The `inspector` module provides an API for interacting with the V8 inspector. diff --git a/doc/api/intl.md b/doc/api/intl.md index c7ac7fd2b68cd2..224c00a62fe888 100644 --- a/doc/api/intl.md +++ b/doc/api/intl.md @@ -1,5 +1,7 @@ # Internationalization Support + + Node.js has many features that make it easier to write internationalized programs. Some of them are: diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 7852454a9295c5..df9038182fbf95 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -1,5 +1,7 @@ # N-API + + > Stability: 1 - Experimental N-API (pronounced N as in the letter, followed by API) diff --git a/doc/api/perf_hooks.md b/doc/api/perf_hooks.md index 09582cea80bb0a..08edafe5b7fb41 100644 --- a/doc/api/perf_hooks.md +++ b/doc/api/perf_hooks.md @@ -1,7 +1,6 @@ # Performance Timing API - + + > Stability: 1 - Experimental diff --git a/doc/api/tracing.md b/doc/api/tracing.md index 53c6dac55dac05..e03477b1adf20c 100644 --- a/doc/api/tracing.md +++ b/doc/api/tracing.md @@ -1,5 +1,7 @@ # Tracing + + Trace Event provides a mechanism to centralize tracing information generated by V8, Node core, and userspace code.