syntax: go: fix word boundary before dot in number literal
The fragment "\<\." can never match anything because \< matches the
beginning of a word but "." is not a word character.
Replace \< with \B (the empty string not at the edge of a word).
Signed-off-by:
Tom Levy <tomlevy93@gmail.com>
Showing
+1 -1
Please register or sign in to comment