From b9408ed90235eb0a614ddcdc646897e486a5fc90 Mon Sep 17 00:00:00 2001 From: ymekuria Date: Mon, 24 Jun 2024 15:41:47 -0700 Subject: [PATCH] fix(actions-and-reducers.mdx): remove extra colon in code snippet --- .../writing-a-zkapp/feature-overview/actions-and-reducer.mdx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx b/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx index 3d7551b4c..06e7aa460 100644 --- a/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx +++ b/docs/zkapps/writing-a-zkapp/feature-overview/actions-and-reducer.mdx @@ -82,7 +82,7 @@ let newState = this.reducer.reduce( actions, stateType, (state: Bool, action: Field) => state.or(action.equals(1000)), - initial: + initial ); ```