summaryrefslogtreecommitdiff
path: root/basic
diff options
context:
space:
mode:
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() )