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@tnie.de>2018-05-20 13:13:03 +0300
committerAnatoli Papirovski <apapirovski@mac.com>2018-05-22 11:35:17 +0300
commite3166554684ccba7f4a16fc827f8cd048e2d2c84 (patch)
tree8cebe7277b4202778290c9b171b8365ed4b7d3e0 /src/stream_base-inl.h
parenta3d174c525980cd5ad7a040fcacbe9de9f024905 (diff)
lib,src,test: fix comments
PR-URL: https://github.com/nodejs/node/pull/20846 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Daniel Bevenius <daniel.bevenius@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com>
Diffstat (limited to 'src/stream_base-inl.h')
-rw-r--r--src/stream_base-inl.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream_base-inl.h b/src/stream_base-inl.h
index cfe0de0872d..b1e820b09f7 100644
--- a/src/stream_base-inl.h
+++ b/src/stream_base-inl.h
@@ -70,7 +70,7 @@ inline StreamResource::~StreamResource() {
StreamListener* listener = listener_;
listener->OnStreamDestroy();
// Remove the listener if it didn’t remove itself. This makes the logic
- // logic in `OnStreamDestroy()` implementations easier, because they
+ // in `OnStreamDestroy()` implementations easier, because they
// may call generic cleanup functions which can just remove the
// listener unconditionally.
if (listener == listener_)