Skip to content

Commit

Permalink
English symbols: Change the in-word apostrophe rule so that it doesn'…
Browse files Browse the repository at this point in the history
…t require a letter afterwards, as there are some words that end with an apostrophe. Also, don't hard-code letters and digits, but instead use appropriate regexp escapes.
  • Loading branch information
jcsteh committed Apr 19, 2011
1 parent 5526f41 commit 9385cc6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion source/locale/en/symbols.dic
Expand Up @@ -9,7 +9,7 @@
: phrase ending (?<=[^\s:]):(?=\s|$)
# Others
decimal point (?<=\d)\.(?=\d)
in-word ' (?<=[a-zA-Z0-9])'(?=[a-zA-Z])
in-word ' (?<=[^\W_])'

symbols:
# identifier replacement[[ level][ preserve]][ # display name]
Expand Down

0 comments on commit 9385cc6

Please sign in to comment.