From d4b09987c4432e19f29152a64228e9e6d426f701 Mon Sep 17 00:00:00 2001 From: Kimmo Hintikka Date: Mon, 22 Jan 2018 11:04:33 +0000 Subject: [PATCH] corrected spelling for example docs Corrected spelling from simmilate to simulate Former-commit-id: f672aa340fd53119defa89da0d93757dc0b0152b --- _examples/miscellaneous/recover/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_examples/miscellaneous/recover/main.go b/_examples/miscellaneous/recover/main.go index a366f3b5..9b5b7dc5 100644 --- a/_examples/miscellaneous/recover/main.go +++ b/_examples/miscellaneous/recover/main.go @@ -12,7 +12,7 @@ func main() { app.Use(recover.New()) i := 0 - // let's simmilate a panic every next request + // let's simulate a panic every next request app.Get("/", func(ctx iris.Context) { i++ if i%2 == 0 {