aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/str/libkvistr.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/modules/str/libkvistr.cpp')
-rw-r--r--src/modules/str/libkvistr.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/modules/str/libkvistr.cpp b/src/modules/str/libkvistr.cpp
index b663bda54..862e33ff3 100644
--- a/src/modules/str/libkvistr.cpp
+++ b/src/modules/str/libkvistr.cpp
@@ -1150,7 +1150,7 @@ static bool str_kvs_fnc_match(KviKvsModuleFunctionCall * c)
<string> $str.word(<n:int>,<string:string>)
@description:
Returns the nth word inside the <string> (with n starting from 0!)[br]
- A word is a substring not containing spaces (ASCII chars 32, carriage returns , tabs etc...).[br]
+ A word is a substring not containing spaces (ASCII chars 32, carriage returns, tabs etc...).[br]
If the string contains less than n+1 words then an empty string is returned.[br]
This function is faster than a call to [fnc]split[/fnc]() and array indexing
if you need a single word to be extracted from a complex string.[br]