Merge pull request #104 from diegospd/patch-1

Typo on guide.rst
This commit is contained in:
Jonathan Daugherty 2016-12-10 16:59:07 -08:00 committed by GitHub
commit 618cf6c95b

View File

@ -321,7 +321,7 @@ define the counter event type:
data CounterEvent = Counter Int
With this type declaration we can now use counter events in our app by
using the application type ``App s e CounterEvent``. To handle these
using the application type ``App s CounterEvent n``. To handle these
events we'll just need to look for ``AppEvent`` values in the event
handler: