summaryrefslogtreecommitdiff
path: root/linguistic/source/dlistimp.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'linguistic/source/dlistimp.cxx')
-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;