From 629e72e9f406795148d3b1278645388b44ae6361 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tobias=20Nie=C3=9Fen?= Date: Wed, 31 Mar 2021 23:03:23 +0200 Subject: [PATCH] src: fix typo in node_mutex PR-URL: https://github.com/nodejs/node/pull/38011 Reviewed-By: Richard Lau Reviewed-By: Michael Dawson Reviewed-By: Colin Ihrig Reviewed-By: Luigi Pinca Reviewed-By: Darshan Sen Reviewed-By: Rich Trott --- src/node_mutex.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/node_mutex.h b/src/node_mutex.h index b82505cc639b7a..40c44c6d4fadb1 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& shared)