Skip to content

Commit

Permalink
chore: fix typo of Unkown to Unknown (vercel#9809)
Browse files Browse the repository at this point in the history
  • Loading branch information
twumm authored and timneutkens committed Dec 22, 2019
1 parent c27dff9 commit b95228e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/with-context-api/components/Counter.js
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ const reducer = (state, action) => {
case 'INCREASE_BY':
return state + action.payload
default:
throw new Error(`Unkown action: ${action.type}`)
throw new Error(`Unknown action: ${action.type}`)
}
}

Expand Down

0 comments on commit b95228e

Please sign in to comment.