summaryrefslogtreecommitdiff
path: root/pyuno/source/module/pyuno.cxx
diff options
context:
space:
mode:
Diffstat (limited to 'pyuno/source/module/pyuno.cxx')
-rw-r--r--pyuno/source/module/pyuno.cxx2
1 files changed, 1 insertions, 1 deletions
diff --git a/pyuno/source/module/pyuno.cxx b/pyuno/source/module/pyuno.cxx
index a4f0d1ef06b4..ac9ca52349f2 100644
--- a/pyuno/source/module/pyuno.cxx
+++ b/pyuno/source/module/pyuno.cxx
@@ -586,7 +586,7 @@ static PyObject* PyUNO_cmp( PyObject *self, PyObject *that, int op )
if(op != Py_EQ && op != Py_NE)
{
- PyErr_SetString(PyExc_TypeError, "only '==' and '!=' comparisions are defined");
+ PyErr_SetString(PyExc_TypeError, "only '==' and '!=' comparisons are defined");
return 0;
}
if( self == that )