summaryrefslogtreecommitdiff
path: root/i18npool
diff options
context:
space:
mode:
authorAndrea Gelmini <andrea.gelmini@gelma.net>2015-06-22 14:31:42 +0200
committerMichael Stahl <mstahl@redhat.com>2015-06-22 12:36:21 +0000
commitaade27554d427649810f5635133519cadfa8002f (patch)
tree7f87acd42d9b3821f969444cc0a65e8f27988503 /i18npool
parenteb0c9b43e7f09054a864eb44c24c43b27c0f21f5 (diff)
Fix typos
Change-Id: I60ed5eb658d50cbc7dc572facb5463b7527b4d9b Reviewed-on: https://gerrit.libreoffice.org/16408 Reviewed-by: Michael Stahl <mstahl@redhat.com> Tested-by: Michael Stahl <mstahl@redhat.com>
Diffstat (limited to 'i18npool')
-rw-r--r--i18npool/source/transliteration/transliteration_body.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/i18npool/source/transliteration/transliteration_body.cxx b/i18npool/source/transliteration/transliteration_body.cxx
index e48b6a6e6e92..d7e856af1eae 100644
--- a/i18npool/source/transliteration/transliteration_body.cxx
+++ b/i18npool/source/transliteration/transliteration_body.cxx
@@ -281,7 +281,7 @@ static OUString transliterate_titlecase_Impl(
// toUpper can be used to properly resolve ligatures and characters like Beta
aResolvedLigature = aCharClassImpl.toUpper( aResolvedLigature, 0, aResolvedLigature.getLength(), rLocale );
// since toTitle will leave all-uppercase text unchanged we first need to
- // use toLower to bring possible 2nd and following charas in lowercase
+ // use toLower to bring possible 2nd and following chars in lowercase
aResolvedLigature = aCharClassImpl.toLower( aResolvedLigature, 0, aResolvedLigature.getLength(), rLocale );
sal_Int32 nResolvedLen = aResolvedLigature.getLength();