From d1d668a3cbe852d9a06f03369e7e635232d85139 Mon Sep 17 00:00:00 2001 From: luochuanhang Date: Mon, 17 Jan 2022 11:46:34 +0800 Subject: [PATCH] regexp: add missing is --- src/regexp/regexp.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/regexp/regexp.go b/src/regexp/regexp.go index af7259c9bfd2cb..f975bb38948883 100644 --- a/src/regexp/regexp.go +++ b/src/regexp/regexp.go @@ -42,7 +42,7 @@ // successive submatches of the expression. Submatches are matches of // parenthesized subexpressions (also known as capturing groups) within the // regular expression, numbered from left to right in order of opening -// parenthesis. Submatch 0 is the match of the entire expression, submatch 1 +// parenthesis. Submatch 0 is the match of the entire expression, submatch 1 is // the match of the first parenthesized subexpression, and so on. // // If 'Index' is present, matches and submatches are identified by byte index