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 ); ```