diff options
Diffstat (limited to 'state.go')
-rw-r--r-- | state.go | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -65,7 +65,7 @@ func UnicodeWhitespace(s *State) { func NewState(input string) *State { return &State{ Input: input, - WS: ASCIIWhitespace, + WS: UnicodeWhitespace, } } |