Skip to content

Commit 1379528

Browse files
author
Anton Straka
committed
doc update
1 parent f521e04 commit 1379528

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -97,15 +97,15 @@ for char mapping and removing but string is converted only once.
9797
CE2Ascii.charMapper()
9898
, SequenceCharMapper.instance("\\/ ", "___", ";:&")
9999
, new CharMapper() {
100-
protected boolean isToBeRemoved(char c) { return (c < 32) || (c > 126); }
101-
protected char map(char c) { return c; }
100+
protected boolean isToBeRemoved(char c) { return (c < 32) || (c > 126); }
101+
protected char map(char c) { return c; }
102102
}
103103
);
104104
```
105105
This example combine
106106
- CE2Ascii mapper.
107107
- Mapper mapping slash, backslash and space into underline and remoces some special chars.
108-
- Maper which removes all none ascii chars.
108+
- Maper which keeps onlu printable ascii chars.
109109

110110
## CE2Ascii and EE2Ascii
111111

0 commit comments

Comments
 (0)