From 7495fad6b3d9e489e504f66a7b19e96288df55c4 Mon Sep 17 00:00:00 2001 From: kozbial Date: Mon, 26 Jul 2021 18:37:13 -0700 Subject: [PATCH] Add missing period and fix typo --- scripts/goog_module/convert-file.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/goog_module/convert-file.sh b/scripts/goog_module/convert-file.sh index 38ac2eafb..ebf791d3b 100755 --- a/scripts/goog_module/convert-file.sh +++ b/scripts/goog_module/convert-file.sh @@ -22,7 +22,7 @@ # capture group "()" in the regex). This will return the first match, unless # the global modifier is specified, in which case, it will return all matches. # If this command is used without a capture group it returns true or false (in -# the form a truthy or falsey value) +# the form a truthy or falsy value). # 3. perl -nle 'print $& while m{regex}modifiers' # Similar to (2), but returns regex matches separated by newlines. # The "m{regex}modifiers" is equivalent to "m/regex/modifiers" syntax.