summaryrefslogtreecommitdiff
path: root/i18npool/source/breakiterator/xdictionary.cxx
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-09-29 17:54:04 +0200
committerOliver Specht <oliver.specht@cib.de>2015-09-30 12:41:09 +0000
commita50539e2aa79bfef74c1100c252020972d436e77 (patch)
tree9f282bbc336fad97557c71ab6d92d6857f2162f4 /i18npool/source/breakiterator/xdictionary.cxx
parenteab0904f0edda70334532b5cbf466717966f5db0 (diff)
Fix typos
Change-Id: Iab78219aff60a7a45a319a96f326e27a6e8e25b8 Reviewed-on: https://gerrit.libreoffice.org/18953 Reviewed-by: Oliver Specht <oliver.specht@cib.de> Tested-by: Oliver Specht <oliver.specht@cib.de>
Diffstat (limited to 'i18npool/source/breakiterator/xdictionary.cxx')
-rw-r--r--i18npool/source/breakiterator/xdictionary.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/breakiterator/xdictionary.cxx b/i18npool/source/breakiterator/xdictionary.cxx
index 73aab77f8c38..c6955d852a2b 100644
--- a/i18npool/source/breakiterator/xdictionary.cxx
+++ b/i18npool/source/breakiterator/xdictionary.cxx
@@ -418,7 +418,7 @@ Boundary xdictionary::nextWord(const OUString& rText, sal_Int32 anyPos, sal_Int1
anyPos = boundary.endPos;
const sal_Int32 nLen = rText.getLength();
if (anyPos < nLen) {
- // looknig for the first non-whitespace character from anyPos
+ // looking for the first non-whitespace character from anyPos
sal_uInt32 ch = rText.iterateCodePoints(&anyPos);
while (u_isWhitespace(ch) && (anyPos < nLen)) ch=rText.iterateCodePoints(&anyPos);
if (anyPos > 0)