From 18af73a9620279a1c6ad0176b10405bd37c5f699 Mon Sep 17 00:00:00 2001 From: "SND\\kernelnet_cp" Date: Thu, 28 Jul 2016 11:19:08 +0000 Subject: [PATCH] [0.3.x] fixed : typo in a function description git-svn-id: https://pykd.svn.codeplex.com/svn@91022 9b283d60-5439-405e-af05-b73fd8c4d996 --- pykd/pymod.cpp | 20 ++++++++++---------- 1 file changed, 10 insertions(+), 10 deletions(-) diff --git a/pykd/pymod.cpp b/pykd/pymod.cpp index 5ad22f8..7fbd3fe 100644 --- a/pykd/pymod.cpp +++ b/pykd/pymod.cpp @@ -341,25 +341,25 @@ BOOST_PYTHON_MODULE( pykd ) "Read the block of the target's memory and return it as list of doubles" ) ); python::def( "writeBytes", pykd::writeBytes, writeBytes_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of unsigned bytes to target memeory" ) ); + "Writing a list of unsigned bytes to the target's memory" ) ); python::def( "writeWords", pykd::writeWords, writeWords_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of unsigned shorts to target memeory" ) ); + "Writing a list of unsigned shorts to the target's memory" ) ); python::def( "writeDWords", pykd::writeDWords, writeDWords_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of unsigned long ( double word ) to target memeory" ) ); + "Writing a list of unsigned long ( double word ) to the target's memory" ) ); python::def( "writeQWords", pykd::writeQWords, writeQWords_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of unsigned long long ( quad word ) to target memeory" ) ); + "Writing a list of unsigned long long ( quad word ) to the target's memory" ) ); python::def( "writeSignBytes", pykd::writeSignBytes, writeSignBytes_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of signed bytes to target memeory" ) ); + "Writing a list of signed bytes to the target's memory" ) ); python::def( "writeSignWords", pykd::writeSignWords, writeSignWords_( python::args( "offset", "count", "phyAddr" ), - "Writing a list of signed words to target memeory" ) ); + "Writing a list of signed words to the target's memory" ) ); python::def( "writeSignDWords", pykd::writeSignDWords, writeSignDWords_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of signed longs to target memeory" ) ); + "Writing a list of signed longs to the target's memory" ) ); python::def( "writeSignQWords", pykd::writeSignQWords, writeSignQWords_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of signed long longs to target memeory" ) ); + "Writing a list of signed long longs to the target's memory" ) ); python::def( "writeFloats", pykd::writeFloats, writeFloats_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of floats to target memeory" ) ); + "Writing a list of floats to the target's memory" ) ); python::def( "writeDoubles", pykd::writeDoubles, writeDoubles_( python::args( "offset", "values", "phyAddr" ), - "Writing a list of doubles to target memeory" ) ); + "Writing a list of doubles to the target's memory" ) ); python::def( "ptrPtr", pykd::ptrPtr, "Read an pointer value from the target memory" );