summaryrefslogtreecommitdiff
path: root/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'state.go')
-rw-r--r--state.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/state.go b/state.go
index 64737dc..8aab3e2 100644
--- a/state.go
+++ b/state.go
@@ -65,7 +65,7 @@ func UnicodeWhitespace(s *State) {
func NewState(input string) *State {
return &State{
Input: input,
- WS: ASCIIWhitespace,
+ WS: UnicodeWhitespace,
}
}