Skip to content

Commit 5581c5f

Browse files
authored
chore: fix typos (#3574)
* Update filters.rst * Update migration.rst * Update resources.rst * Update test_tester_provider.py
1 parent 981b633 commit 5581c5f

File tree

4 files changed

+4
-4
lines changed

4 files changed

+4
-4
lines changed

docs/filters.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ The script can be run with: ``python ./eventscanner.py <your JSON-RPC API URL>``
555555
# # (slow down scan after starting to get hits)
556556
self.chunk_size_decrease = 0.5
557557
558-
# Factor how fast we increase chunk size if no results found
558+
# Factor how fast we increase chunk size if no results are found
559559
self.chunk_size_increase = 2.0
560560
561561
@property

docs/migration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ legacy ``WebsocketProvider``. The ``LegacyWebSocketProvider`` has been deprecate
3131
If migrating from ``WebSocketProviderV2`` to ``WebSocketProvider``, you can expect the
3232
following changes:
3333

34-
- Instantiation no longer requires the ``persistant_websocket`` method:
34+
- Instantiation no longer requires the ``persistent_websocket`` method:
3535

3636
.. code-block:: python
3737

docs/resources.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ Tutorials
4242
- `Decode a signed transaction <https://snakecharmers.ethereum.org/web3-py-patterns-decoding-signed-transactions/>`__
4343
- Find a historical contract `revert reason <https://snakecharmers.ethereum.org/web3py-revert-reason-parsing/>`__
4444
- Generate a `vanity address <https://snakecharmers.ethereum.org/web3-py-patterns-mining-addresses/>`__
45-
- Similate transactions with `call state overrides <https://snakecharmers.ethereum.org/web3-py-patterns-eth_call-overrides/>`__
45+
- Simulate transactions with `call state overrides <https://snakecharmers.ethereum.org/web3-py-patterns-eth_call-overrides/>`__
4646
- Configure web3 for `JSON-RPC fallback and MEV blocker providers <https://web3-ethereum-defi.readthedocs.io/tutorials/multi-rpc-configuration.html>`__
4747

4848

tests/core/providers/test_tester_provider.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ def test_eth_tester_provider_properly_handles_eth_tester_key_error_messages():
7777
assert response["error"]["message"] == "Unknown RPC Endpoint: eth_blockNumber"
7878

7979

80-
def test_eth_tester_provider_properly_handles_eth_tester_not_implmented_error_messages(
80+
def test_eth_tester_provider_properly_handles_eth_tester_not_implemented_error_messages(
8181
mocker,
8282
):
8383
mocker.patch(

0 commit comments

Comments
 (0)