From 71b91660ca880814b0c5e4884655ab5cb4ac69d2 Mon Sep 17 00:00:00 2001 From: Josh Baker Date: Thu, 2 Nov 2017 07:02:42 -0700 Subject: [PATCH] Update README.md --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2c876b7..cf9a60d 100644 --- a/README.md +++ b/README.md @@ -105,7 +105,7 @@ events.Tick = func() (delay time.Duration, action Action){ A connection can be woken up using the `wake` function that is made available through the `Serving` event. This is useful for when you need to offload an operation to a background goroutine and then later notify the event loop that it's time to send some data. -Example echo server that when it encounters the line "exec" it waits 5 seconds before responding. +Example echo server that when encountering the line "exec" it waits 5 seconds before responding. ```go var wake func(id int) bool