Spelling fixes

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

View File

@ -1,6 +1,6 @@
# mem_edit # mem_edit
**mem_edit** is a multiplatform memory editing library written in Python. **mem_edit** is a multi-platform memory editing library written in Python.
**Capabilities:** **Capabilities:**
@ -22,7 +22,7 @@
* typing (for type annotations) * typing (for type annotations)
Install with pip, from pypi (preferred): Install with pip, from PyPI (preferred):
```bash ```bash
pip install mem_edit pip install mem_edit
``` ```

View File

@ -1,7 +1,7 @@
""" """
mem_edit 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 reading, writing, and searching in the working memory of running
programs. 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 :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 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. :param writeable_only: If True, only search regions where the process has write access.
:return: List of addresses where the needle_buffer was found. :return: List of addresses where the needle_buffer was found.
""" """

View File

@ -4,7 +4,7 @@ from setuptools import setup, find_packages
setup(name='mem_edit', setup(name='mem_edit',
version='0.1', version='0.1',
description='Multiplatform library for memory editing', description='Multi-platform library for memory editing',
author='Jan Petykiewicz', author='Jan Petykiewicz',
author_email='anewusername@gmail.com', author_email='anewusername@gmail.com',
url='https://mpxd.net/gogs/jan/mem_edit', url='https://mpxd.net/gogs/jan/mem_edit',