Skip to content

Commit 113da86

Browse files
authored
Update index.md
Fixed typo, apostrophe & 1st letter of word capital
1 parent 0603a2d commit 113da86

File tree

1 file changed

+4
-4
lines changed
  • src/content/developers/tutorials/a-developers-guide-to-ethereum-part-one

1 file changed

+4
-4
lines changed

src/content/developers/tutorials/a-developers-guide-to-ethereum-part-one/index.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ This post aspires to be accessible to a wide range of developers. [Python tools]
1818

1919
Assumptions:
2020

21-
- you can get around in a terminal,
22-
- you've written a few lines of Python code,
21+
- You can get around in a terminal,
22+
- You've written a few lines of Python code,
2323
- Python version 3.6 or greater is installed on your machine (use of a [virtual environment](https://realpython.com/effective-python-environment/#virtual-environments) is strongly encouraged), and
2424
- you’ve used `pip`, Python’s package installer.
2525
Again, if any of these are untrue, or you don’t plan to reproduce the code in this article, you can likely still follow along just fine.
@@ -60,7 +60,7 @@ Python developers that want to interact with Ethereum are likely to reach for [W
6060

6161
[Ethereum clients](/developers/docs/nodes-and-clients/) can be configured to be reachable by [IPC](https://wikipedia.org/wiki/Inter-process_communication), HTTP, or Websockets, so Web3.py will need to mirror this configuration. Web3.py refers to these connection options as **providers**. You’ll want to choose one of the three providers to link the Web3.py instance with your node.
6262

63-
![A diagram showing how web3.py uses IPC to connect your applicaction to an Ethereum node](./web3py-and-nodes.png)
63+
![A diagram showing how web3.py uses IPC to connect your application to an Ethereum node](./web3py-and-nodes.png)
6464

6565
_Configure the Ethereum node and Web3.py to communicate via the same protocol, e.g., IPC in this diagram._
6666

@@ -114,7 +114,7 @@ This will print out some information about the versions of Python and IPython yo
114114
In [1]:
115115
```
116116

117-
You’re looking at an interactive Python shell now. Essentially, its a sandbox to play in. If you’ve made it this far, its time to import Web3.py:
117+
You’re looking at an interactive Python shell now. Essentially, it's a sandbox to play in. If you’ve made it this far, it's time to import Web3.py:
118118

119119
```python
120120
In [1]: from web3 import Web3

0 commit comments

Comments
 (0)