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: typos in documentation files #16421

Open
wants to merge 4 commits into
base: develop
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 docs/test_dsl_spec.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,7 +192,7 @@ DSL.List.iter (left_partition @ right_partition) ~f:destroy

ALTERNATIVE TEST: keep two partitions separate with a fixed topology, with 1-2 intermediate
nodes bridging the networks, then take the other bridge offline temporarily and then have them
rejoin the network without topologoical restrictions and see if the chains reconverge
rejoin the network without topological restrictions and see if the chains reconverge

##### Basic Hard Fork Test

Expand Down
4 changes: 2 additions & 2 deletions src/lib/mina_networking/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## Typing Conventions

In the context of this document, we will describe query and response types using a psuedo type-system. Tuples of data are in the form `(a, ..., b)`, lists are in the form `[a]`, and polymorphic types are represented as functions returning types. For example, we use the standard polymorphic types `optional :: type -> type` and `result :: type -> type -> type` throughout this document. The `optional` type constructor means that a value can be null, and a `result` type constructor means that there is 1 of 2 possible return types (typically a success type and an error type). For example, `optional int` might be an int or null, where as `result int error` is either an int or an error.
In the context of this document, we will describe query and response types using a pseudo type-system. Tuples of data are in the form `(a, ..., b)`, lists are in the form `[a]`, and polymorphic types are represented as functions returning types. For example, we use the standard polymorphic types `optional :: type -> type` and `result :: type -> type -> type` throughout this document. The `optional` type constructor means that a value can be null, and a `result` type constructor means that there is 1 of 2 possible return types (typically a success type and an error type). For example, `optional int` might be an int or null, where as `result int error` is either an int or an error.

### Relevant types

Expand Down Expand Up @@ -136,4 +136,4 @@ Returns the best tip block along with the root block of the frontier, and a merk

**Response**: `result node_status error`

This acts as a telemetry RPC which asks a peer to provide invformation about their node status. Daemons do not have to respond to this request, and node operators may pass a command line flag to opt-out of responding to these node status requests.
This acts as a telemetry RPC which asks a peer to provide information about their node status. Daemons do not have to respond to this request, and node operators may pass a command line flag to opt-out of responding to these node status requests.