summaryrefslogtreecommitdiff
path: root/linguistic
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 /linguistic
parentc5ee41058193d346665bda092b8f692e2ecd43d5 (diff)
fix spelling delimeter -> delimiter
Change-Id: I12a330e922f8f6ffe9c746a26e5b32c0bbae626a
Diffstat (limited to 'linguistic')
-rw-r--r--linguistic/source/dlistimp.cxx4
1 files changed, 2 insertions, 2 deletions
diff --git a/linguistic/source/dlistimp.cxx b/linguistic/source/dlistimp.cxx
index 8eb9102085ea..c6a8609da02b 100644
--- a/linguistic/source/dlistimp.cxx
+++ b/linguistic/source/dlistimp.cxx
@@ -802,11 +802,11 @@ static sal_Int32 lcl_GetToken( OUString &rToken,
break;
}
- if (i >= rText.getLength()) // delimeter not found
+ if (i >= rText.getLength()) // delimiter not found
rToken = rText.copy( nPos );
else
rToken = rText.copy( nPos, i - nPos );
- nRes = i + 1; // continue after found delimeter
+ nRes = i + 1; // continue after found delimiter
}
return nRes;