Skip to content

Commit

Permalink
Merge pull request #2 from crutcher/patch-1
Browse files Browse the repository at this point in the history
Update README.md
  • Loading branch information
jagracey authored Jun 16, 2016
2 parents 4310373 + 5024813 commit d8171b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -333,7 +333,7 @@ The zero-width non-joiner (ZWNJ) is a non-printing character used in the compute

- **String length is typically determined by counting codepoints.** This means that surrogate pairs would count as two characters. Combining multiple diacritics may be stacked over the same character. `a + ̈ == ̈a `, increasing length, while only producing a single character.

- **Similarily, reversing strings often is a non-tribial task.** Again, surrogate pairs and diacritics must be reversed together. [ES Reverser](https://github.com/mathiasbynens/esrever) provides a pretty good solution.
- **Similarily, reversing strings often is a non-trivial task.** Again, surrogate pairs and diacritics must be reversed together. [ES Reverser](https://github.com/mathiasbynens/esrever) provides a pretty good solution.

- **Upper and lower case mappings are not always one-to-one.** They can also be:
- One-to-many: (ß → SS )
Expand Down

0 comments on commit d8171b1

Please sign in to comment.