From ea83dc5670c78d20bcc4ac90c63ebce24e0309fb Mon Sep 17 00:00:00 2001 From: Jan Petykiewicz Date: Wed, 21 Jun 2017 01:43:32 -0700 Subject: [PATCH] Spelling fixes --- README.md | 4 ++-- mem_edit/__init__.py | 2 +- mem_edit/abstract.py | 2 +- setup.py | 2 +- 4 files changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index d6af12c..7d4eda0 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # 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:** @@ -22,7 +22,7 @@ * typing (for type annotations) -Install with pip, from pypi (preferred): +Install with pip, from PyPI (preferred): ```bash pip install mem_edit ``` diff --git a/mem_edit/__init__.py b/mem_edit/__init__.py index f67cb19..43afed5 100644 --- a/mem_edit/__init__.py +++ b/mem_edit/__init__.py @@ -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. diff --git a/mem_edit/abstract.py b/mem_edit/abstract.py index 05b6ceb..ad8df31 100644 --- a/mem_edit/abstract.py +++ b/mem_edit/abstract.py @@ -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. """ diff --git a/setup.py b/setup.py index c38b8b0..58f4541 100644 --- a/setup.py +++ b/setup.py @@ -4,7 +4,7 @@ from setuptools import setup, find_packages setup(name='mem_edit', version='0.1', - description='Multiplatform library for memory editing', + description='Multi-platform library for memory editing', author='Jan Petykiewicz', author_email='anewusername@gmail.com', url='https://mpxd.net/gogs/jan/mem_edit',