diff options
-rw-r--r-- | src/pkg/regexp/regexp.go | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pkg/regexp/regexp.go b/src/pkg/regexp/regexp.go index 399981571..9301ccb98 100644 --- a/src/pkg/regexp/regexp.go +++ b/src/pkg/regexp/regexp.go @@ -77,8 +77,7 @@ type Regexp struct { } const ( - _START // beginning of program - = iota; + _START = iota; // beginning of program _END; // end of program: success _BOT; // '^' beginning of text _EOT; // '$' end of text |