From 0a632226ad83247feae387d81d0910bb12658b58 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Tue, 23 Aug 2016 21:44:41 +0200 Subject: [PATCH] Fix typo --- TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index 6106531..29b33e6 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -172,7 +172,7 @@ dependencies.register!(Color, Blue); dependencies.register!(Color, Red); auto mixer = dependencies.resolve!ColorMixer; ``` -Member `mixer.colors` will now contain instances of `Blue` and `Red`. The order in which instances are resolved is not guarenteed to be that of the order in which they were registered. +Member `mixer.colors` will now contain instances of `Blue` and `Red`. The order in which instances are resolved is not guaranteed to be that of the order in which they were registered. Application Contexts --------------------