From cb99b4429142511d0520ad3b5bc89c83bc451657 Mon Sep 17 00:00:00 2001 From: Andrea Gelmini Date: Thu, 11 Jul 2019 22:22:52 +0000 Subject: [PATCH] Fix typo Change-Id: I542d694bbab6ce8d07bee9345db70a64a2fc0963 Reviewed-on: https://gerrit.libreoffice.org/75924 Tested-by: Jenkins Reviewed-by: Julien Nabet --- lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx index bc4d91038a25..87cb8583f8e6 100644 --- a/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx +++ b/lingucomponent/source/hyphenator/hyphen/hyphenimp.cxx @@ -299,7 +299,7 @@ Reference< XHyphenatedWord > SAL_CALL Hyphenator::hyphenate( const OUString& aWo return nullptr; } - // other wise hyphenate the word with that dictionary + // otherwise hyphenate the word with that dictionary dict = mvDicts[k].aPtr; eEnc = mvDicts[k].eEnc; CharClass * pCC = mvDicts[k].apCC.get(); @@ -539,7 +539,7 @@ Reference< XPossibleHyphens > SAL_CALL Hyphenator::createPossibleHyphens( const return nullptr; } - // other wise hyphenate the word with that dictionary + // otherwise hyphenate the word with that dictionary dict = mvDicts[k].aPtr; rtl_TextEncoding eEnc = mvDicts[k].eEnc; CharClass* pCC = mvDicts[k].apCC.get();