Spelling fixes

This commit is contained in:
Jan Petykiewicz 2017-06-21 01:43:32 -07:00
commit ea83dc5670
4 changed files with 5 additions and 5 deletions

View file

@ -1,7 +1,7 @@
"""
mem_edit
mem_edit is a multiplatform (Windows and Linux) python package for
mem_edit is a multi-platform (Windows and Linux) python package for
reading, writing, and searching in the working memory of running
programs.

View file

@ -265,7 +265,7 @@ class Process(metaclass=ABCMeta):
:param needle_buffer: The value to search for. This should be a ctypes object of the same
sorts as used by .read_memory(...), which will be compared to the contents of
memory at each acessible address.
memory at each accessible address.
:param writeable_only: If True, only search regions where the process has write access.
:return: List of addresses where the needle_buffer was found.
"""