Skip to content

Commit

Permalink
fix spread example (#323)
Browse files Browse the repository at this point in the history
  • Loading branch information
egoson authored Jan 31, 2024
1 parent 9dc00f5 commit d2d7ee7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/spread/readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ $first.watch((first) => console.log('First name', first));
$last.watch((last) => console.log('Last name', last));

formReceived({ first: '', last: '' });
// Nothing, because filter returned true
// Nothing, because filter returned false

formReceived({ first: 'Hello', last: 'World' });
// => First name Hello
Expand Down

0 comments on commit d2d7ee7

Please sign in to comment.