summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
authorAdolfo Jayme Barrientos <fitojb@ubuntu.com>2015-07-21 04:52:14 -0500
committerAdolfo Jayme Barrientos <fitojb@ubuntu.com>2015-07-21 04:53:48 -0500
commit3e926736c7a1ec0a622ff446466113d9ccd8cb11 (patch)
treebcbfa6d33e8e028f32f9d2441f50fe969307c512 /basic
parent34d062147c16090fa42c27ac7960e3f5e3b65d2b (diff)
Miscellaneous typos
Change-Id: I5187364d420ab78c36a91632efab9c32951d867a
Diffstat (limited to 'basic')
-rw-r--r--basic/source/sbx/sbxcurr.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/basic/source/sbx/sbxcurr.cxx b/basic/source/sbx/sbxcurr.cxx
index 0c9b8d3a871e..56defb0a8d8a 100644
--- a/basic/source/sbx/sbxcurr.cxx
+++ b/basic/source/sbx/sbxcurr.cxx
@@ -158,7 +158,7 @@ static sal_Int64 ImpStringToCurrency( const OUString &rStr )
OUString sTmp( rStr.trim() );
const sal_Unicode* p = sTmp.getStr();
- // normalise string number by removeing thousands & decimal point separators
+ // normalise string number by removing thousand & decimal point separators
OUStringBuffer sNormalisedNumString( sTmp.getLength() + nFractDigit );
if ( *p == '-' || *p == '+' )
@@ -195,7 +195,7 @@ static sal_Int64 ImpStringToCurrency( const OUString &rStr )
}
// can we raise error here ? ( previous behaviour was more forgiving )
- // so... not sure that could bread existing code, lets see if anyone
+ // so... not sure that could break existing code, let's see if anyone
// complains.
if ( p != sTmp.getStr() + sTmp.getLength() )