summaryrefslogtreecommitdiff
path: root/src/node_mutex.h
diff options
context:
space:
mode:
authorTobias Nießen <tniessen@users.noreply.github.com>2021-03-31 23:03:23 +0200
committerMichaël Zasso <targos@protonmail.com>2021-05-01 12:25:33 +0200
commitb0f8f8d6370ceba8a8749b208272798cb9d8feca (patch)
treef3bf079a0815fae88df8d767bfb06272a2d33132 /src/node_mutex.h
parentac5902210619b1792c46f03e747380e294058c5e (diff)
downloadnode-new-b0f8f8d6370ceba8a8749b208272798cb9d8feca.tar.gz
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 b82505cc63..40c44c6d4f 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)