diff --git a/README.md b/README.md index c62ebaf..0b146da 100644 --- a/README.md +++ b/README.md @@ -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: diff --git a/libp2p/transport/tcp/tcp.py b/libp2p/transport/tcp/tcp.py index 095417c..21c0574 100644 --- a/libp2p/transport/tcp/tcp.py +++ b/libp2p/transport/tcp/tcp.py @@ -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 """ diff --git a/libp2p/transport/transport_interface.py b/libp2p/transport/transport_interface.py index c294a3d..ab49c76 100644 --- a/libp2p/transport/transport_interface.py +++ b/libp2p/transport/transport_interface.py @@ -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 """