diff options
author | Austin Henriksen <austin@zeroc.com> | 2019-10-30 15:33:53 -0400 |
---|---|---|
committer | Austin Henriksen <austin@zeroc.com> | 2019-10-30 15:33:53 -0400 |
commit | e1d5563c14ee002822c11da2913ac9970d233225 (patch) | |
tree | ce667b214287f7b9a857f8f496ffb827d1239cfb /python | |
parent | Fix clang -std=c++17 build (diff) | |
download | ice-e1d5563c14ee002822c11da2913ac9970d233225.tar.bz2 ice-e1d5563c14ee002822c11da2913ac9970d233225.tar.xz ice-e1d5563c14ee002822c11da2913ac9970d233225.zip |
Fixed typo.
Diffstat (limited to 'python')
-rw-r--r-- | python/modules/IcePy/ObjectAdapter.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/python/modules/IcePy/ObjectAdapter.cpp b/python/modules/IcePy/ObjectAdapter.cpp index 166ba647a53..1c8fd77572d 100644 --- a/python/modules/IcePy/ObjectAdapter.cpp +++ b/python/modules/IcePy/ObjectAdapter.cpp @@ -1697,7 +1697,7 @@ static PyMethodDef AdapterMethods[] = { STRCAST("waitForDeactivate"), reinterpret_cast<PyCFunction>(adapterWaitForDeactivate), METH_VARARGS, PyDoc_STR(STRCAST("waitForDeactivate() -> None")) }, { STRCAST("isDeactivated"), reinterpret_cast<PyCFunction>(adapterIsDeactivated), METH_NOARGS, - PyDoc_STR(STRCAST("isDeactivatied() -> None")) }, + PyDoc_STR(STRCAST("isDeactivated() -> None")) }, { STRCAST("destroy"), reinterpret_cast<PyCFunction>(adapterDestroy), METH_NOARGS, PyDoc_STR(STRCAST("destroy() -> None")) }, { STRCAST("add"), reinterpret_cast<PyCFunction>(adapterAdd), METH_VARARGS, |