Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTurner Jabbour <doubleujabbour@gmail.com>2020-08-24 05:16:18 +0300
committerAnna Henningsen <anna@addaleax.net>2020-08-26 20:14:40 +0300
commit0f9650bcddc79edb2d6ed447bc0416236239c0a0 (patch)
treebc29da0c812e3ec973147bc3b5d3a1b28765aabf /src/README.md
parent9ded2942a40da0badc9e91b3658fc6a97abcb3a4 (diff)
src,doc: fix grammar due to missing 'is'
PR-URL: https://github.com/nodejs/node/pull/34897 Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Franziska Hinkelmann <franziska.hinkelmann@gmail.com> Reviewed-By: David Carlier <devnexen@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net>
Diffstat (limited to 'src/README.md')
-rw-r--r--src/README.md2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/README.md b/src/README.md
index 5885e8fde65..ae769aca98d 100644
--- a/src/README.md
+++ b/src/README.md
@@ -402,7 +402,7 @@ that state is through the use of `Environment::AddBindingData`, which gives
binding functions access to an object for storing such state.
That object is always a [`BaseObject`][].
-Its class needs to have a static `binding_data_name` field that based on a
+Its class needs to have a static `binding_data_name` field based on a
constant string, in order to disambiguate it from other classes of this type,
and which could e.g. match the binding’s name (in the example above, that would
be `cares_wrap`).