From 7c0d9bbba122d47abfe911e963ac61ac8014fff1 Mon Sep 17 00:00:00 2001 From: Mario Squeo Date: Sat, 31 Oct 2020 14:19:30 -0400 Subject: [PATCH] Fix typo in event.Tick example --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index bc5f967..25bdcfc 100644 --- a/README.md +++ b/README.md @@ -94,7 +94,7 @@ The `Tick` event fires ticks at a specified interval. The first tick fires immediately after the `Serving` events. ```go -events.Tick = func() (delay time.Duration, action Action){ +events.Tick = func() (delay time.Duration, action evio.Action){ log.Printf("tick") delay = time.Second return