From 3511ba2c694cb2c99ac419435f140b357379fabb 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 --- 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)