From 8fa33a9882b1dd7ef9dbd52ff98b591eee60a4c7 Mon Sep 17 00:00:00 2001 From: "Gerasimos (Makis) Maropoulos" Date: Wed, 20 Dec 2017 18:10:57 +0200 Subject: [PATCH] fix typo Former-commit-id: 1aaca0e3473003d00f19af9d16cf6f29f3f526a2 --- _examples/mvc/singleton/main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/_examples/mvc/singleton/main.go b/_examples/mvc/singleton/main.go index 44a602bf..5dcc2a9b 100644 --- a/_examples/mvc/singleton/main.go +++ b/_examples/mvc/singleton/main.go @@ -21,7 +21,7 @@ type globalVisitorsController struct { // all clients share the same controller instance instead. // Note that any controller's methods // are per-client, but the struct's field can be shared across multiple clients if the structure - // does not have any dynamic struct field depenendies that depend on the iris.Context + // does not have any dynamic struct field dependencies that depend on the iris.Context // and ALL field's values are NOT zero, at this case we use uint64 which it's no zero (even if we didn't set it // manually ease-of-understand reasons) because it's a value of &{0}. // All the above declares a Singleton, note that you don't have to write a single line of code to do this, Iris is smart enough.