* Fix non-breaking space in specials.json

This commit is contained in:
Matthew Honnibal 2015-10-19 12:46:11 +11:00
parent 7ecafdab7f
commit 726bb648da
1 changed files with 1 additions and 1 deletions

View File

@ -342,7 +342,7 @@ hardcoded_specials = {
"\n": [{"F": "\n", "pos": "SP"}], "\n": [{"F": "\n", "pos": "SP"}],
"\t": [{"F": "\t", "pos": "SP"}], "\t": [{"F": "\t", "pos": "SP"}],
" ": [{"F": " ", "pos": "SP"}], " ": [{"F": " ", "pos": "SP"}],
u"\u0020": [{"F": u"\u0020", "pos": "SP", "L": " "}] u"\u00a0": [{"F": u"\u00a0", "pos": "SP", "L": " "}]
} }