Skip to content

Commit 16faef0

Browse files
committed
Fix minor language issues
These were found by squidler https://app.squidler.io/sites/site_0195a4f7-468f-79d4-83ad-9cad71a56639
1 parent e707795 commit 16faef0

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ Creating or updating blueprints is the bread & butter of this project and anyone
3636

3737
The bandwidth of possible contributions is very broad and can range from fixing typos via the `Suggest an edit` <i class="fa fa-edit"></i> button on the [rendered website](https://cardano-scaling.github.io/cardano-blueprint), over contributing a whole set of documents about how consensus works in Cardano, to including a conformance test suite.
3838

39-
In fact, it's not even set in stone [what a blueprint is](https://cardano-scaling.github.io/cardano-blueprint/#what-is-a-blueprint) and we are gladly exploring any asset that you think covers our values and contributes to reaching the goal of the Cardano Blueprint initiative.
39+
In fact, it's not even set in stone [what a blueprint is](https://cardano-scaling.github.io/cardano-blueprint/#what-is-a-blueprint), and we are gladly exploring any asset that you think covers our values and contributes to reaching the goal of the Cardano Blueprint initiative.
4040

4141
### Creating a pull request
4242

src/mempool/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ block.
2828
> in another peer which has selected a different chain. Even in the case both
2929
> peers have the same selection, the existence in the mempool (or lack thereof)
3030
> of some other specific transaction that creates (or consumes) the inputs for
31-
> this one could lead to different veredicts on each peer.
31+
> this one could lead to different verdicts on each peer.
3232
3333
While only nodes that forge new blocks will use these transactions to create
3434
blocks, non-block-producing nodes are still expected to diffuse transactions to

src/network/handshake.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ stateDiagram
3636

3737
### State transitions
3838

39-
| From state | Message | Parameters | to state |
39+
| From state | Message | Parameters | To state |
4040
|:-----------|:-------------------|--------------------------------|:----------|
4141
| StPropose | MsgProposeVersions | `versionTable` | StConfirm |
4242
| StConfirm | MsgReplyVersion | `versionTable` | End |

src/network/mini-protocols.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ cases the initiator and responder take turns to have agency (send messages),
2929
but in some cases where one party must wait for a response, the other will
3030
keep agency and send a follow-up message later.
3131

32-
We can draw this state machine in the standard way, with circles and arrows, but
32+
We can draw this state machine in the standard way using circles and arrows, but
3333
with the addition of an indicator of which side has agency. This one is for the
3434
minimal example mini-protocol, [Ping Pong]():
3535

@@ -67,7 +67,7 @@ We can also show the transitions of the state machine as a table, and
6767
indicate what data is passed with each message, although Ping Pong
6868
doesn't carry any:
6969

70-
| From state | Message | Parameters | to state |
70+
| From state | Message | Parameters | To state |
7171
|:-----------|:--------|------------|:---------|
7272
| StIdle | MsgPing | - | StBusy |
7373
| StBusy | MsgPong | - | StIdle |

0 commit comments

Comments
 (0)