Skip to content

Commit

Permalink
improved doc
Browse files Browse the repository at this point in the history
  • Loading branch information
jlangch committed Mar 26, 2024
1 parent 9b834a9 commit e4c08c2
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2894,10 +2894,10 @@ public VncVal apply(final VncList args) {
.doc(
"Normalizes an UTF string.\n\n" +
"On MacOS umlauts like ä are just encoded as 'a' plus the combining diaresis\n" +
"character ̈. Therefore an 'ä' in Java and an 'ä' from a MacOS filename are\n" +
"character ̈ . Therefore an 'ä' in Java and an 'ä' from a MacOS filename are\n" +
"different!\n\n" +
"This function normalizes UTF strings to simplify processing.\n\n" +
"The _form_ argument is one of:\n"+
"The *form* argument is one of:\n"+
"* :NFD Canonical decomposition\n" +
"* :NFC Canonical decomposition, followed by canonical composition\n" +
"* :NFKD Compatibility decomposition\n" +
Expand All @@ -2911,7 +2911,7 @@ public VncVal apply(final VncList args) {
" \n" +
"«If it looks like a duck and quacks like a duck, then it probably is a duck» is definitely WRONG here! \n" +
" \n" +
";; u with combining diaresis char: \\u0308 ( ̈) \n" +
";; u with combining diaresis char: \\u0308 ̈ \n" +
"(println \"u\\u0308\") \n" +
";; => ü (actually prints as ü on a terminal) \n" +
" \n" +
Expand Down

0 comments on commit e4c08c2

Please sign in to comment.