Skip to content

Commit 0248079

Browse files
viankakrisnamarkerikson
authored andcommitted
Withot -> without (#58)
1 parent f7ffd51 commit 0248079

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/api/createReducer.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ function toggleTodo(state, action) {
5858
const { index } = action.payload
5959

6060
const todo = state[index]
61-
// Updates the todo object immutably withot relying on immer
61+
// Updates the todo object immutably without relying on immer
6262
return state.map((todo, i) => {
6363
if (i !== index) return todo
6464
return { ...todo, completed: !todo.completed }

0 commit comments

Comments
 (0)