From ae19521ea8e0e66ff9f0d1592d28bec1799d9d61 Mon Sep 17 00:00:00 2001 From: Ryuya Nakamura Date: Sat, 11 May 2019 20:41:05 +0900 Subject: [PATCH] Update the docstring of initiate_validator_exit (#1072) --- specs/core/0_beacon-chain.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/specs/core/0_beacon-chain.md b/specs/core/0_beacon-chain.md index a0c26bf59..103870ce2 100644 --- a/specs/core/0_beacon-chain.md +++ b/specs/core/0_beacon-chain.md @@ -1127,7 +1127,7 @@ def get_churn_limit(state: BeaconState) -> int: ```python def initiate_validator_exit(state: BeaconState, index: ValidatorIndex) -> None: """ - Initiate the validator of the given ``index``. + Initiate the exit of the validator of the given ``index``. """ # Return if validator already initiated exit validator = state.validator_registry[index]