diff --git a/pykd/pymod.cpp b/pykd/pymod.cpp index d740800..04a9dbd 100644 --- a/pykd/pymod.cpp +++ b/pykd/pymod.cpp @@ -410,8 +410,8 @@ BOOST_PYTHON_MODULE( pykd ) "Return the location in the target's memory of the thread structure ( TEB )" ) ); python::def( "getThreadSystemID", pykd::getThreadSystemId, getThreadSystemId_( python::args("Id"), "Return system thread ID ( TID )" ) ); - python::def( "getThreadId", pykd::getThreadIdByOffset, - "Return thread ID by the location in the target's memory of the thread structure" ); + python::def( "getThreadIdByOffset", pykd::getThreadIdByOffset, + "Return thread ID by the location in the targ et's memory of the thread structure" ); python::def( "getThreadIdBySystemID", pykd::getThreadIdBySystemId, getThreadIdBySystemId_( python::args("Tid"), "Return thread ID by the system's thread ID ( TID )" ) ); python::def( "getCurrentThread", pykd::getCurrentThread,