From 041ab1a52b6067ba94bb63849c31ea866f0afc0d Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Thu, 27 Nov 2014 00:49:20 +0100 Subject: [PATCH] Clarify example a bit --- README.md | 1 + 1 file changed, 1 insertion(+) diff --git a/README.md b/README.md index e56d580..6570b70 100644 --- a/README.md +++ b/README.md @@ -125,6 +125,7 @@ Poodinis can autowire circular dependencies when they are registered with single ###Registering and resolving using qualifiers You can register multiple concrete types to a super type. When doing so, you will need to specify a qualifier when resolving that type: ```d +// Color is an interface, Blue and Red are classes implementing that interface container.register!(Color, Blue); container.register!(Color, Red); auto blueInstance = container.resolve!(Color, Blue);