From 302060a648eb47e6b75058f3aa7714febad3cae3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Wed, 13 Jan 2021 16:22:14 +0100 Subject: [PATCH] doc: change "it's" to "its" where necessary MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit PR-URL: https://github.com/nodejs/node/pull/36913 Reviewed-By: Richard Lau Reviewed-By: Michaƫl Zasso Reviewed-By: Antoine du Hamel Reviewed-By: Colin Ihrig Reviewed-By: Pooja D P Reviewed-By: Luigi Pinca --- doc/api/crypto.md | 2 +- doc/api/http.md | 2 +- doc/api/n-api.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/doc/api/crypto.md b/doc/api/crypto.md index b7977120fa4924..bd9dbf1001f9e7 100644 --- a/doc/api/crypto.md +++ b/doc/api/crypto.md @@ -1651,7 +1651,7 @@ added: REPLACEME --> Encapsulates an X509 certificate and provides read-only access to -it's information. +its information. ```js const { X509Certificate } = require('crypto'); diff --git a/doc/api/http.md b/doc/api/http.md index 809b2b0c44d095..3105bdcaf982f0 100644 --- a/doc/api/http.md +++ b/doc/api/http.md @@ -1927,7 +1927,7 @@ An `IncomingMessage` object is created by [`http.Server`][] or and [`'response'`][] event respectively. It may be used to access response status, headers and data. -Different from it's `socket` value which is a subclass of {stream.Duplex}, the +Different from its `socket` value which is a subclass of {stream.Duplex}, the `IncomingMessage` itself extends {stream.Readable} and is created separately to parse and emit the incoming HTTP headers and payload, as the underlying socket may be reused multiple times in case of keep-alive. diff --git a/doc/api/n-api.md b/doc/api/n-api.md index 15ed0837968dff..1e2240d26ca409 100644 --- a/doc/api/n-api.md +++ b/doc/api/n-api.md @@ -2739,7 +2739,7 @@ napi_status napi_get_buffer_info(napi_env env, Returns `napi_ok` if the API succeeded. This API is used to retrieve the underlying data buffer of a `node::Buffer` -and it's length. +and its length. *Warning*: Use caution while using this API since the underlying data buffer's lifetime is not guaranteed if it's managed by the VM.