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);