Skip to content

Commit

Permalink
chore: Fix Grammar and Spelling Issues (#2389)
Browse files Browse the repository at this point in the history
  • Loading branch information
Maks authored Nov 26, 2024
1 parent 0210854 commit 589e574
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/userguides/config.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ There are two locations you can place config files.
1. In the root of your project
2. In your `$HOME/.ape` directory (global)

Project settings take precedent, but global settings allow you to configure preferences across all projects, such as your default mainnet provider (e.g. Alchemy versus running your own node).
Project settings take precedence, but global settings allow you to configure preferences across all projects, such as your default mainnet provider (e.g. Alchemy versus running your own node).

This guide serves as an index of some settings you can include in any `ape-config.yaml` file.
This guide is **PURPOSELY** alphabetized to facilitate easier look-up of keys.
Expand Down
4 changes: 2 additions & 2 deletions docs/userguides/proxy.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Proxy Contracts

Ape is able to detect proxy contracts so that it uses the target interface when interacting with a contract.
The following proxies are supporting in `ape-ethereum`:
The following proxies are supported in `ape-ethereum`:

| Proxy Type | Short Description |
| ------------ | --------------------------------- |
Expand All @@ -27,7 +27,7 @@ from ape import Contract
my_contract = Contract("0x...")
```

Ape will check the address you give it and detect if hosts a proxy contract.
Ape will check the address you give it and detect if it hosts a proxy contract.
In the case where it determines the address is a proxy contract, it resolves the address of the implementation (every proxy is different) and returns the interface for the implementation contract.
This allows you to still call methods as you normally do on proxy contracts.

Expand Down
2 changes: 1 addition & 1 deletion tests/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Due to its plugin-based architecture and registration as a pytest plugin, testin

### MyPy Type Annotations

This codebase uses MyPy extensively, not only to help aide in finding typing issues within the codebase, but also as a means to help plugin writers avoid integration issues with the library.
This codebase uses MyPy extensively, not only to help aid in finding typing issues within the codebase, but also as a means to help plugin writers avoid integration issues with the library.
Please try to use MyPy Type Annotations as much as possible in the Core codebase, except where there exists an issue that would hugely complicate its use from a lack of available machinery.

### Functional Tests
Expand Down

0 comments on commit 589e574

Please sign in to comment.