Skip to content

Commit

Permalink
fix: typos [APE-1513] (#1725)
Browse files Browse the repository at this point in the history
* fix typos

* fix typo

* fix typo

* fix lint

* fix lint
  • Loading branch information
omahs authored Nov 4, 2023
1 parent 253a94f commit a7e6701
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Development

To get started with working on the codebase, use the following steps prepare your local environment:
To get started with working on the codebase, use the following steps to prepare your local environment:

```bash
# clone the GitHub repo and navigate into the folder
Expand Down
2 changes: 1 addition & 1 deletion SECURITY.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Security Policy

This document describes the Security Policy for ApeWorX Ltd., including vulnerability disclosures for the Ape Framework, any of it's maintained plugins, or any packages we maintain used by those as dependencies.
This document describes the Security Policy for ApeWorX Ltd., including vulnerability disclosures for the Ape Framework, any of its maintained plugins, or any packages we maintain used by those as dependencies.
We are committed to conduct our Security Process in a professional and civil manner.
Public shaming, under-reporting, or misrepresentation of vulnerabilities will not be tolerated.

Expand Down
8 changes: 4 additions & 4 deletions src/ape/contracts/base.py
Original file line number Diff line number Diff line change
Expand Up @@ -336,7 +336,7 @@ def call(self) -> ContractCallHandler:
Get the :class:`~ape.contracts.base.ContractCallHandler` equivalent
of this transaction handler. The call-handler uses the ``eth_call``
RPC under-the-hood and thus it gets reverted before submitted.
This a useful way to simulate a transaction without invoking it.
This is a useful way to simulate a transaction without invoking it.
"""

return ContractCallHandler(self.contract, self.abis)
Expand Down Expand Up @@ -587,8 +587,8 @@ def range(
Search through the logs for this event using the given filter parameters.
Args:
start_or_stop (int): When also given ``stop``, this is the the
earliest block number in the desired log set.
start_or_stop (int): When also given ``stop``, this is the earliest
block number in the desired log set.
Otherwise, it is the total amount of blocks to get starting from ``0``.
stop (Optional[int]): The latest block number in the
desired log set. Defaults to delegating to provider.
Expand Down Expand Up @@ -665,7 +665,7 @@ def poll_logs(
"""
Poll new blocks. Optionally set a start block to include historical blocks.
**NOTE**: This is a daemon method; it does not terminate unless an exception occurrs.
**NOTE**: This is a daemon method; it does not terminate unless an exception occurs.
Usage example::
Expand Down

0 comments on commit a7e6701

Please sign in to comment.