summaryrefslogtreecommitdiffstats
path: root/include/rtl
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2018-11-19 00:12:20 +0100
committerJulien Nabet <serval2412@yahoo.fr>2018-11-19 08:33:09 +0100
commit2f049ebdb343eeb377720e27463c1975a83a1985 (patch)
tree75be122785f8ac7762ed205beafec4adec9d8bd3 /include/rtl
parentloplugin:constantparam (diff)
downloadcore-2f049ebdb343eeb377720e27463c1975a83a1985.tar.gz
core-2f049ebdb343eeb377720e27463c1975a83a1985.zip
Fix typos
Change-Id: I0c966f517e337caa340526b48fa62b9910ce0a3e Reviewed-on: https://gerrit.libreoffice.org/63504 Reviewed-by: Julien Nabet <serval2412@yahoo.fr> Tested-by: Julien Nabet <serval2412@yahoo.fr>
Diffstat (limited to 'include/rtl')
-rw-r--r--include/rtl/string.hxx10
1 files changed, 5 insertions, 5 deletions
diff --git a/include/rtl/string.hxx b/include/rtl/string.hxx
index 812ceb71cd9e..cac60d34d8e6 100644
--- a/include/rtl/string.hxx
+++ b/include/rtl/string.hxx
@@ -75,14 +75,14 @@ namespace rtl
stores also the length of the string, so that many operations are
faster as the C-str-functions.
- This class provide only readonly string handling. So you could create
+ This class provides only readonly string handling. So you could create
a string and you could only query the content from this string.
- It provide also functionality to change the string, but this results
+ It provides also functionality to change the string, but this results
in every case in a new string instance (in the most cases with an
memory allocation). You don't have functionality to change the
- content of the string. If you want change the string content, than
- you should us the OStringBuffer class, which provide these
- functionality and avoid to much memory allocation.
+ content of the string. If you want to change the string content, then
+ you should use the OStringBuffer class, which provides these
+ functionalities and avoid too much memory allocation.
The design of this class is similar to the string classes in Java
and so more people should have fewer understanding problems when they