From 40da065f7e6c96821a4fda2f60ae1a75f174f5a3 Mon Sep 17 00:00:00 2001 From: Noel Grandin Date: Fri, 29 Nov 2013 16:03:31 +0200 Subject: fix spelling delimeter -> delimiter Change-Id: I12a330e922f8f6ffe9c746a26e5b32c0bbae626a --- linguistic/source/dlistimp.cxx | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'linguistic') 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; -- cgit