From 509fbb2c5ca74d93e9d0c3b3532be4c7214e1cd5 Mon Sep 17 00:00:00 2001 From: Guillaume Ballet <3272758+gballet@users.noreply.github.com> Date: Fri, 10 Mar 2023 09:34:44 +0100 Subject: [PATCH] style: remove confusing underscore --- specs/_features/verge/beacon-chain.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/specs/_features/verge/beacon-chain.md b/specs/_features/verge/beacon-chain.md index 5b808c881..31bd21e79 100644 --- a/specs/_features/verge/beacon-chain.md +++ b/specs/_features/verge/beacon-chain.md @@ -138,8 +138,8 @@ StateDiff = List[StemStateDiff, MAX_STEMS] ```python class IpaProof(Container): - c_l: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH] - c_r: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH] + cl: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH] + cr: Vector[BanderwagonGroupElement, IPA_PROOF_DEPTH] final_evaluation = BanderwagonFieldElement ```