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:
authorTobias Nießen <tniessen@users.noreply.github.com>2021-04-01 00:03:23 +0300
committerMyles Borins <mylesborins@github.com>2021-04-05 19:57:26 +0300
commit629e72e9f406795148d3b1278645388b44ae6361 (patch)
tree6d179fde21c7e3ddbea83b521c92f5c5075c66f3
parentb6f490122154b949dd38ef14516d62020e3cc7c7 (diff)
src: fix typo in node_mutex
PR-URL: https://github.com/nodejs/node/pull/38011 Reviewed-By: Richard Lau <rlau@redhat.com> Reviewed-By: Michael Dawson <midawson@redhat.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
-rw-r--r--src/node_mutex.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/node_mutex.h b/src/node_mutex.h
index b82505cc639..40c44c6d4fa 100644
--- a/src/node_mutex.h
+++ b/src/node_mutex.h
@@ -32,7 +32,7 @@ class ExclusiveAccess {
class Scoped {
public:
- // ExclusiveAccess will commonly be used in conjuction with std::shared_ptr
+ // ExclusiveAccess will commonly be used in conjunction with std::shared_ptr
// and without this constructor it's too easy to forget to keep a reference
// around to the shared_ptr while operating on the ExclusiveAccess object.
explicit Scoped(const std::shared_ptr<ExclusiveAccess>& shared)