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:
authorMasashi Hirano <cherrydog07@gmail.com>2018-06-03 18:59:21 +0300
committerAnna Henningsen <anna@addaleax.net>2018-06-04 01:52:56 +0300
commit75f6ef9f6f7edb10f087f1a96121ce262fdd353e (patch)
tree3713e6009a0e6d9463e153270d3c914604291918 /src/string_search.h
parentcd8f06f64f5fba32cf851de4d59c0e22f45b89c7 (diff)
src: fix typo string_search.h comment
PR-URL: https://github.com/nodejs/node/pull/21115 Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Vse Mozhet Byt <vsemozhetbyt@gmail.com> Reviewed-By: Richard Lau <riclau@uk.ibm.com> Reviewed-By: Jon Moss <me@jonathanmoss.me> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com>
Diffstat (limited to 'src/string_search.h')
-rw-r--r--src/string_search.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/string_search.h b/src/string_search.h
index 9c090da247a..358a4c1b024 100644
--- a/src/string_search.h
+++ b/src/string_search.h
@@ -559,7 +559,7 @@ size_t StringSearch<Char>::InitialSearch(
return subject.length();
}
-// Perform a a single stand-alone search.
+// Perform a single stand-alone search.
// If searching multiple times for the same pattern, a search
// object should be constructed once and the Search function then called
// for each search.