Fix typo in event.Tick example

This commit is contained in:
Mario Squeo 2020-10-31 14:19:30 -04:00
parent 399d938449
commit 7c0d9bbba1
1 changed files with 1 additions and 1 deletions

View File

@ -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