fix book typos (#5185)

This commit is contained in:
Tibi Krisboi 2019-07-19 03:24:22 +03:00 committed by Michael Vines
parent afa05acb32
commit 25080f1a33
3 changed files with 4 additions and 3 deletions

1
.gitignore vendored
View File

@ -23,3 +23,4 @@ log-*.txt
# intellij files # intellij files
/.idea/ /.idea/
/solana.iml /solana.iml
/.vscode/

View File

@ -22,7 +22,7 @@ gossip endpoint (a socket address).
Records shared over gossip are arbitrary, but signed and versioned (with a Records shared over gossip are arbitrary, but signed and versioned (with a
timestamp) as needed to make sense to the node receiving them. If a node timestamp) as needed to make sense to the node receiving them. If a node
recieves two records from the same source, it it updates its own copy with the receives two records from the same source, it updates its own copy with the
record with the most recent timestamp. record with the most recent timestamp.
## Gossip Service Interface ## Gossip Service Interface

View File

@ -11,7 +11,7 @@ of getting its stake slashed. The economics are covered in [staking
rewards](staking-rewards.md). This chapter, on the other hand, describes the rewards](staking-rewards.md). This chapter, on the other hand, describes the
underlying mechanics of its implementation. underlying mechanics of its implementation.
## Basic Besign ## Basic Design
The general idea is that the validator owns a Vote account. The Vote account The general idea is that the validator owns a Vote account. The Vote account
tracks validator votes, counts validator generated credits, and provides any tracks validator votes, counts validator generated credits, and provides any
@ -118,7 +118,7 @@ The Stakes and the RewardsPool are accounts that are owned by the same `Stake` p
### StakeInstruction::DelegateStake(u64) ### StakeInstruction::DelegateStake(u64)
The Stake account is moved from Unitialized to StakeState::Stake form. This is The Stake account is moved from Uninitialized to StakeState::Stake form. This is
how stakers choose their initial delegate validator node and activate their how stakers choose their initial delegate validator node and activate their
stake account lamports. stake account lamports.