aboutsummaryrefslogtreecommitdiffstats
path: root/src/modules/str
diff options
context:
space:
mode:
authorGravatar wodim2011-06-26 20:35:05 +0000
committerGravatar wodim2011-06-26 20:35:05 +0000
commit069f38263eefd0145d93d9ca3b79182807cb6128 (patch)
treed7365ae4897a9d07bcaf81e0d6689a34796fe4db /src/modules/str
parentadded optinal third parameter [case] to $str.lefttofirst, lefttolast, rightfr... (diff)
downloadKVIrc-069f38263eefd0145d93d9ca3b79182807cb6128.tar.gz
KVIrc-069f38263eefd0145d93d9ca3b79182807cb6128.tar.bz2
KVIrc-069f38263eefd0145d93d9ca3b79182807cb6128.zip
typos
git-svn-id: https://svn.kvirc.de/svn/trunk/kvirc@5879 17fca916-40b9-46aa-a4ea-0a15b648b75c
Diffstat (limited to 'src/modules/str')
-rw-r--r--src/modules/str/libkvistr.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/modules/str/libkvistr.cpp b/src/modules/str/libkvistr.cpp
index 067b0d9ca..fdd26f593 100644
--- a/src/modules/str/libkvistr.cpp
+++ b/src/modules/str/libkvistr.cpp
@@ -987,7 +987,7 @@ static bool str_kvs_fnc_urlencode(KviKvsModuleFunctionCall * c)
<string> $str.lefttofirst(<string:string>,<substring:string>[,<case:bool>])
@description:
This function returns the left part of the string given as the first parameter
- from the start until the string given as the second parameter is found. It don't
+ from the start until the string given as the second parameter is found. It doesn't
include the substring of the second parameter in the returned value.
If the second parameter is not found, an empty string is returned.
If the third parameter is set to true, then the search is case sensitive; it defaults to false.
@@ -1026,7 +1026,7 @@ static bool str_kvs_fnc_lefttofirst(KviKvsModuleFunctionCall * c)
@description:
This function returns the left part of the string given as the first parameter
from the start until the last ocurrence of the string given as the second parameter
- is found. It don't include the substring of the second parameter in the returned value.
+ is found. It doesn't include the substring of the second parameter in the returned value.
If the second parameter is not found, an empty string is returned.
If the third parameter is set to true, then the search is case sensitive; it defaults to false.
@examples:
@@ -1064,7 +1064,7 @@ static bool str_kvs_fnc_lefttolast(KviKvsModuleFunctionCall * c)
@description:
This function returns the right part of the string given as the first parameter
from the position where the first ocurrence of the string given as the second parameter
- is found. It don't include the substring of the second parameter in the returned value.
+ is found. It doesn't include the substring of the second parameter in the returned value.
If the second parameter is not found, an empty string is returned.
If the third parameter is set to true, then the search is case sensitive; it defaults to false.
@examples:
@@ -1102,7 +1102,7 @@ static bool str_kvs_fnc_rightfromfirst(KviKvsModuleFunctionCall * c)
@description:
This function returns the right part of the string given as the first parameter
from the position where the last ocurrence of the string given as the second parameter
- is found. It don't include the substring of the second parameter in the returned value.
+ is found. It doesn't include the substring of the second parameter in the returned value.
If the second parameter is not found, an empty string is returned.
If the third parameter is set to true, then the search is case sensitive; it defaults to false.
@examples: