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
path: root/src
diff options
context:
space:
mode:
authorKohei Ueno <kohei.ueno119@gmail.com>2022-04-01 19:18:16 +0300
committerGitHub <noreply@github.com>2022-04-01 19:18:16 +0300
commit4cbb5d1a8b426e8999906a6b19cb749d41f7433b (patch)
tree509e7ee14bf9be5f2cdc4968ade0f562fbd565e6 /src
parentb9e97979f71fefb0ae39e8b53195ef8cb224482c (diff)
src: fix typo in InspectorIoDelegate constructor
PR-URL: https://github.com/nodejs/node/pull/42520 Reviewed-By: Darshan Sen <raisinten@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Mestery <mestery@protonmail.com> Reviewed-By: Akhil Marsonya <akhil.marsonya27@gmail.com> Reviewed-By: Tierney Cyren <hello@bnb.im>
Diffstat (limited to 'src')
-rw-r--r--src/inspector_io.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/inspector_io.cc b/src/inspector_io.cc
index 5868289ae67..7f52fc60593 100644
--- a/src/inspector_io.cc
+++ b/src/inspector_io.cc
@@ -209,7 +209,7 @@ class IoSessionDelegate : public InspectorSessionDelegate {
class InspectorIoDelegate: public node::inspector::SocketServerDelegate {
public:
InspectorIoDelegate(std::shared_ptr<RequestQueueData> queue,
- std::shared_ptr<MainThreadHandle> main_threade,
+ std::shared_ptr<MainThreadHandle> main_thread,
const std::string& target_id,
const std::string& script_path,
const std::string& script_name);