diff options
-rw-r--r-- | lib/pure/strutils.nim | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/pure/strutils.nim b/lib/pure/strutils.nim index fabb3f9f4..d110fb8ef 100644 --- a/lib/pure/strutils.nim +++ b/lib/pure/strutils.nim @@ -2513,6 +2513,7 @@ proc stripLineEnd*(s: var string) = ## Returns ``s`` stripped from one of these suffixes: ## ``\r, \n, \r\n, \f, \v`` (at most once instance). ## For example, can be useful in conjunction with ``osproc.execCmdEx``. + ## aka: `chomp`:idx: runnableExamples: var s = "foo\n\n" s.stripLineEnd |