Skip to content

Commit d1d668a

Browse files
committed
regexp: add missing is
1 parent 3b5eec9 commit d1d668a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/regexp/regexp.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
// successive submatches of the expression. Submatches are matches of
4343
// parenthesized subexpressions (also known as capturing groups) within the
4444
// regular expression, numbered from left to right in order of opening
45-
// parenthesis. Submatch 0 is the match of the entire expression, submatch 1
45+
// parenthesis. Submatch 0 is the match of the entire expression, submatch 1 is
4646
// the match of the first parenthesized subexpression, and so on.
4747
//
4848
// If 'Index' is present, matches and submatches are identified by byte index

0 commit comments

Comments
 (0)