From e3901fb3d6980acae66a7639c02d40e4c5eafa4d Mon Sep 17 00:00:00 2001 From: crStiv Date: Sun, 15 Dec 2024 21:04:15 +0100 Subject: [PATCH 1/5] typo --- .circleci/codecov.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/codecov.sh b/.circleci/codecov.sh index 1ef332b1b31..22af922a00b 100644 --- a/.circleci/codecov.sh +++ b/.circleci/codecov.sh @@ -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" != "" ]; From c2b5908173554d3c5c1a068e5acfcd0aa2e81154 Mon Sep 17 00:00:00 2001 From: crStiv Date: Sun, 15 Dec 2024 23:00:45 +0100 Subject: [PATCH 2/5] typos --- abci/example/python/abci/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abci/example/python/abci/server.py b/abci/example/python/abci/server.py index 40d50896cae..0cbac72f806 100644 --- a/abci/example/python/abci/server.py +++ b/abci/example/python/abci/server.py @@ -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(): @@ -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(): From 5e35541efbf2b498d5c558285ba41cff9df1c40e Mon Sep 17 00:00:00 2001 From: crStiv Date: Sun, 15 Dec 2024 23:02:07 +0100 Subject: [PATCH 3/5] typos --- abci/example/python3/abci/server.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/abci/example/python3/abci/server.py b/abci/example/python3/abci/server.py index 04063262df0..cb04cfef1fd 100644 --- a/abci/example/python3/abci/server.py +++ b/abci/example/python3/abci/server.py @@ -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__) @@ -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(): From 7f68e8faf087da165a5b905eb3056f3f83f31029 Mon Sep 17 00:00:00 2001 From: crStiv Date: Sun, 15 Dec 2024 23:19:02 +0100 Subject: [PATCH 4/5] typo --- abci/README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/abci/README.md b/abci/README.md index 110ad40e959..2debe41830b 100644 --- a/abci/README.md +++ b/abci/README.md @@ -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 From 71c32d4aa8b8a15968df5fd1cec328b18ae01f63 Mon Sep 17 00:00:00 2001 From: crStiv Date: Sun, 15 Dec 2024 23:20:49 +0100 Subject: [PATCH 5/5] typos --- behaviour/reporter_test.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/behaviour/reporter_test.go b/behaviour/reporter_test.go index eae94e7bda2..486621d94f6 100644 --- a/behaviour/reporter_test.go +++ b/behaviour/reporter_test.go @@ -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{} @@ -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"