Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: multiple typographical errors of different importance #35

Open
wants to merge 5 commits into
base: peppermint
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .circleci/codecov.sh
Original file line number Diff line number Diff line change
Expand Up @@ -873,7 +873,7 @@ query="branch=$branch\

if [ "$ft_search" = "1" ];
then
# detect bower comoponents location
# detect bower components location
bower_components="bower_components"
bower_rc=$(cd "$git_root" && cat .bowerrc 2>/dev/null || echo "")
if [ "$bower_rc" != "" ];
Expand Down
2 changes: 1 addition & 1 deletion abci/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ can manage an application state running in another.

Previously, the ABCI was referred to as TMSP.

The community has provided a number of addtional implementations, see the [Tendermint Ecosystem](https://tendermint.com/ecosystem)
The community has provided a number of additional implementations, see the [Tendermint Ecosystem](https://tendermint.com/ecosystem)


## Installation & Usage
Expand Down
4 changes: 2 additions & 2 deletions abci/example/python/abci/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
from reader import BytesBuffer
from msg import RequestDecoder, message_types

# hold the asyncronous state of a connection
# hold the asynchronous state of a connection
# ie. we may not get enough bytes on one read to decode the message

class Connection():
Expand All @@ -26,7 +26,7 @@ def recv(this):
raise IOError("dead connection")
this.recBuf.write(data)

# ABCI server responds to messges by calling methods on the app
# ABCI server responds to messages by calling methods on the app

class ABCIServer():

Expand Down
4 changes: 2 additions & 2 deletions abci/example/python3/abci/server.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
from .reader import BytesBuffer
from .msg import RequestDecoder, message_types

# hold the asyncronous state of a connection
# hold the asynchronous state of a connection
# ie. we may not get enough bytes on one read to decode the message

logger = logging.getLogger(__name__)
Expand All @@ -29,7 +29,7 @@ def recv(this):
raise IOError("dead connection")
this.recBuf.write(data)

# ABCI server responds to messges by calling methods on the app
# ABCI server responds to messages by calling methods on the app

class ABCIServer():

Expand Down
4 changes: 2 additions & 2 deletions behaviour/reporter_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ type scriptItem struct {
}

// equalBehaviours returns true if a and b contain the same PeerBehaviours with
// the same freequencies and otherwise false.
// the same frequencies and otherwise false.
func equalBehaviours(a []bh.PeerBehaviour, b []bh.PeerBehaviour) bool {
aHistogram := map[bh.PeerBehaviour]int{}
bHistogram := map[bh.PeerBehaviour]int{}
Expand Down Expand Up @@ -71,7 +71,7 @@ func equalBehaviours(a []bh.PeerBehaviour, b []bh.PeerBehaviour) bool {

// TestEqualPeerBehaviours tests that equalBehaviours can tell that two slices
// of peer behaviours can be compared for the behaviours they contain and the
// freequencies that those behaviours occur.
// frequencies that those behaviours occur.
func TestEqualPeerBehaviours(t *testing.T) {
var (
peerID p2p.ID = "MockPeer"
Expand Down