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

chore(spec/light-client/verification): typo fix #1148

Merged
merged 4 commits into from
Dec 11, 2023
Merged
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 spec/light-client/verification/Blockchain_A_1.tla
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ BlockHeaders == [
(* in the implementation, only the hashes of V and NextV are stored in a block,
as V and NextV are stored in the application state *)
VS: SUBSET AllNodes,
\* the validators of this bloc. We store the validators instead of the hash.
\* the validators of this block. We store the validators instead of the hash.
NextVS: SUBSET AllNodes
\* the validators of the next block. We store the next validators instead of the hash.
]
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ formalized in TLA+ and model checked.
## Issues that need to be addressed

As it is part of the larger light node, its data structures and
functions interact with the fork dectection functionality of the light
functions interact with the fork detection functionality of the light
client. As a result of the work on
[Pull Request 479](https://github.com/informalsystems/tendermint-rs/pull/479) we
established the need for an update in the data structures in [Issue 499](https://github.com/informalsystems/tendermint-rs/issues/499). This
Expand Down
2 changes: 1 addition & 1 deletion spec/light-client/verification/verification_002_draft.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ formalized in TLA+ and model checked.
## Issues that are addressed in this revision

As it is part of the larger light node, its data structures and
functions interact with the attack dectection functionality of the light
functions interact with the attack detection functionality of the light
client. As a result of the work on

- [attack detection](https://github.com/tendermint/spec/pull/164) for light nodes
Expand Down
2 changes: 1 addition & 1 deletion spec/light-client/verification/verification_003_draft.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ height int64, commit *Commit) error {
continue
}

// If the vals and commit have a 1-to-1 correspondance we can retrieve
// If the vals and commit have a 1-to-1 correspondence we can retrieve
// them by index else we need to retrieve them by address
if lookUpByIndex {
val = vals.Validators[idx]
Expand Down
Loading