From bbde06eb9f2b7a5ae00a3c6f41295bb8f1fcd083 Mon Sep 17 00:00:00 2001 From: Luke Schoen Date: Tue, 16 Jul 2019 09:40:53 +0200 Subject: [PATCH] docs: Fix readme typos (#439) --- validator_client/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/validator_client/README.md b/validator_client/README.md index e6a01007a..0f30ded73 100644 --- a/validator_client/README.md +++ b/validator_client/README.md @@ -12,7 +12,7 @@ The VC is responsible for the following tasks: duties require. - Completing all the fields on a new block (e.g., RANDAO reveal, signature) and publishing the block to a BN. -- Prompting the BN to produce a new shard atteststation as per a validators +- Prompting the BN to produce a new shard attestation as per a validators duties. - Ensuring that no slashable messages are signed by a validator private key. - Keeping track of the system clock and how it relates to slots/epochs. @@ -40,7 +40,7 @@ index. The outcome of a successful poll is a `EpochDuties` struct: ```rust EpochDuties { validator_index: u64, - block_prodcution_slot: u64, + block_production_slot: u64, } ```