From e6efbf96e3aa52da7e91d2e646611a1c084c314d 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. --- 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 ff002218b5e489..d16f81cdcd1067 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 8f94f6b248fe82..fd3ff6f425ff07 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 2a958c30c3fa15..97d13b7481f1c4 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 d88025d38d0d5f..e30cfeb7442460 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 28e488201ec2d8..99687cdc3c17fa 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.