more consistent rendering of the '~' character in the documentation

This commit is contained in:
hneemann 2018-02-17 12:47:16 +01:00
parent c95c3fb4d3
commit e586df4dfb

View File

@ -152,6 +152,9 @@ public class DocuTest extends TestCase {
}
first = false;
switch (c) {
case '~':
sb.append("\u00ac");
break;
case '<':
sb.append("&lt;");
break;