From e4c08c20f2c3439953ba9980553a0bd9bae07497 Mon Sep 17 00:00:00 2001 From: jlangch Date: Tue, 26 Mar 2024 23:03:15 +0100 Subject: [PATCH] improved doc --- .../jlangch/venice/impl/functions/StringFunctions.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/com/github/jlangch/venice/impl/functions/StringFunctions.java b/src/main/java/com/github/jlangch/venice/impl/functions/StringFunctions.java index b0995f0d8..08f8aeb06 100644 --- a/src/main/java/com/github/jlangch/venice/impl/functions/StringFunctions.java +++ b/src/main/java/com/github/jlangch/venice/impl/functions/StringFunctions.java @@ -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" + @@ -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" +