From 767bbc702b706335ae111878c69e8bfbf3fe80df Mon Sep 17 00:00:00 2001 From: ymekuria Date: Wed, 26 Jun 2024 14:27:58 -0600 Subject: [PATCH] fix(actions-and-reducers.mdx): remove extra space --- .../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 a109d6455..fe0046a18 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 ); ```