From ce0371a66b408c86af5305527a9bd2bd253899e0 Mon Sep 17 00:00:00 2001 From: protolambda Date: Wed, 17 Jun 2020 20:23:26 +0200 Subject: [PATCH] fix comment: committees per slot for given *epoch* --- specs/phase0/beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/phase0/beacon-chain.md b/specs/phase0/beacon-chain.md index 6533dcb7f..cd52762d5 100644 --- a/specs/phase0/beacon-chain.md +++ b/specs/phase0/beacon-chain.md @@ -953,7 +953,7 @@ def get_seed(state: BeaconState, epoch: Epoch, domain_type: DomainType) -> Bytes ```python def get_committee_count_per_slot(state: BeaconState, epoch: Epoch) -> uint64: """ - Return the number of committees in each ``slot`` for the given epoch. + Return the number of committees in each slot for the given ``epoch``. """ return max(1, min( MAX_COMMITTEES_PER_SLOT,