Skip to content

Commit 8d8b094

Browse files
committed
a
1 parent fb7c3e5 commit 8d8b094

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

*state-machine-component.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ const ToDos = stateMachineComponent(
6464
// state, action(type)
6565
({ todos, text }, action) => (
6666
<div>
67-
<h2>State Machine ToDo's</h2>
67+
<h2>State Machine ToDos</h2>
6868
<ul>{todos.map( todo => <li>{todo}</li> )}</ul>
6969
<form onSubmit={action('ADD')}>
7070
<input value={text} onInput={action('TEXT')} />

0 commit comments

Comments
 (0)