Skip to content

Commit

Permalink
src: fix typo in node_mutex
Browse files Browse the repository at this point in the history
PR-URL: #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>
  • Loading branch information
tniessen authored and MylesBorins committed Apr 5, 2021
1 parent b6f4901 commit 629e72e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/node_mutex.h
Expand Up @@ -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)
Expand Down

0 comments on commit 629e72e

Please sign in to comment.