From c3770536bcfb79fd2b562a861831eed369576b58 Mon Sep 17 00:00:00 2001 From: Chengzhong Wu Date: Thu, 11 Aug 2022 00:59:52 +0800 Subject: [PATCH] doc: update tags in adding-new-napi-api.md MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit The tag is now renamed as "node-api". PR-URL: https://github.com/nodejs/node/pull/44190 Reviewed-By: Michaƫl Zasso Reviewed-By: Akhil Marsonya Reviewed-By: Darshan Sen Reviewed-By: Jiawen Geng Reviewed-By: Harshitha K P Reviewed-By: Qingyu Deng --- doc/contributing/adding-new-napi-api.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/contributing/adding-new-napi-api.md b/doc/contributing/adding-new-napi-api.md index ccfe2db3959b17..8d2233bc30f690 100644 --- a/doc/contributing/adding-new-napi-api.md +++ b/doc/contributing/adding-new-napi-api.md @@ -18,7 +18,7 @@ Node-API. ABI compatibility with other versions of Node.js. * New API **should** be agnostic towards the underlying JavaScript VM. * New API PRs **must** have a corresponding documentation update. -* New API PRs **must** be tagged as **n-api**. +* New API PRs **must** be tagged as **node-api**. * There **must** be at least one test case showing how to use the API. * There **should** be at least one test case per interesting use of the API. * There **should** be a sample provided that operates in a realistic way @@ -38,7 +38,7 @@ Node-API. * Experimental status exit criteria **must** involve at least the following: * A new PR **must** be opened in `nodejs/node` to remove experimental - status. This PR **must** be tagged as **n-api** and **semver-minor**. + status. This PR **must** be tagged as **node-api** and **semver-minor**. * Exiting an API from experimental **must** be signed off by the team. * If a backport is merited, an API **must** have a down-level implementation.