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
committerDarshan Sen <raisinten@gmail.com>2021-04-04 16:08:13 +0300
commit17a527ec07c69e063a2479a5a87df445a23e43ac (patch)
treef30d97c0389a9c529f663c59608ba5331d4cf21d /src/node_mutex.h
parent49580910db10b05d573ec7e6766ff6d62145916e (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>
Diffstat (limited to 'src/node_mutex.h')
-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)