summaryrefslogtreecommitdiff
path: root/starmath
diff options
context:
space:
mode:
authorNoel Grandin <noel@peralex.com>2013-11-29 16:03:31 +0200
committerNoel Grandin <noel@peralex.com>2013-12-03 11:34:47 +0200
commit40da065f7e6c96821a4fda2f60ae1a75f174f5a3 (patch)
treea0f3e65a419af9126cda6d18093ade37b389791e /starmath
parentc5ee41058193d346665bda092b8f692e2ecd43d5 (diff)
fix spelling delimeter -> delimiter
Change-Id: I12a330e922f8f6ffe9c746a26e5b32c0bbae626a
Diffstat (limited to 'starmath')
-rw-r--r--starmath/source/parse.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/starmath/source/parse.cxx b/starmath/source/parse.cxx
index 5a79bbb7cd11..b5e37655e42b 100644
--- a/starmath/source/parse.cxx
+++ b/starmath/source/parse.cxx
@@ -326,7 +326,7 @@ static const sal_Unicode aDelimiterTable[] =
};
bool SmParser::IsDelimiter( const OUString &rTxt, sal_Int32 nPos )
- // returns 'true' iff cChar is '\0' or a delimeter
+ // returns 'true' iff cChar is '\0' or a delimiter
{
OSL_ENSURE( nPos <= rTxt.getLength(), "index out of range" );
@@ -334,7 +334,7 @@ bool SmParser::IsDelimiter( const OUString &rTxt, sal_Int32 nPos )
if(!cChar)
return true;
- // check if 'cChar' is in the delimeter table
+ // check if 'cChar' is in the delimiter table
const sal_Unicode *pDelim = &aDelimiterTable[0];
for ( ; *pDelim != 0; pDelim++)
if (*pDelim == cChar)