From 66f4c7bdec8cee1a53deacc18cfa5bdabf810d01 Mon Sep 17 00:00:00 2001 From: Masashi Hirano Date: Mon, 4 Jun 2018 00:59:21 +0900 Subject: [PATCH] src: fix typo string_search.h comment PR-URL: https://github.com/nodejs/node/pull/21115 Reviewed-By: Anna Henningsen Reviewed-By: Vse Mozhet Byt Reviewed-By: Richard Lau Reviewed-By: Jon Moss Reviewed-By: Trivikram Kamat --- src/string_search.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/string_search.h b/src/string_search.h index 9c090da247aec8..358a4c1b024e67 100644 --- a/src/string_search.h +++ b/src/string_search.h @@ -559,7 +559,7 @@ size_t StringSearch::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.