Typo fixes (#127)

* Update transport_interface.py

* Update tcp.py

* Update README.md
This commit is contained in:
Hyungsuk Kang 2019-02-25 13:11:54 +09:00 committed by Robert Zajac
parent 82840b5e6c
commit 78d0a658bb
3 changed files with 3 additions and 3 deletions

View File

@ -10,7 +10,7 @@
py-libp2p is an experimental and work-in-progress repo under heavy development. We do not yet recommend using py-libp2p in production environments.
## Sponsorship
This project is graciously sponspored by the Ethereum Foundation through [Wave 5 of their Grants Program](https://blog.ethereum.org/2019/02/21/ethereum-foundation-grants-program-wave-5/).
This project is graciously sponsored by the Ethereum Foundation through [Wave 5 of their Grants Program](https://blog.ethereum.org/2019/02/21/ethereum-foundation-grants-program-wave-5/).
## Maintainers
The py-libp2p team consists of:

View File

@ -68,7 +68,7 @@ class TCP(ITransport):
"""
dial a transport to peer listening on multiaddr
:param multiaddr: multiaddr of peer
:param self_id: peer_id of the dialer (to send to receier)
:param self_id: peer_id of the dialer (to send to receiver)
:param options: optional object
:return: True if successful
"""

View File

@ -8,7 +8,7 @@ class ITransport(ABC):
"""
dial a transport to peer listening on multiaddr
:param multiaddr: multiaddr of peer
:param self_id: peer_id of the dialer (to send to receier)
:param self_id: peer_id of the dialer (to send to receiver)
:param options: optional object
:return: list of multiaddrs
"""