From 97fbf03b85e865a8ff21c139708badaddf677402 Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Tue, 23 Aug 2016 21:23:19 +0200 Subject: [PATCH] Change title of tutorial chapter on automatic injection --- TUTORIAL.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/TUTORIAL.md b/TUTORIAL.md index 4be8cd9..46a535b 100644 --- a/TUTORIAL.md +++ b/TUTORIAL.md @@ -66,7 +66,7 @@ auto preExistingInstance = new ExampleClass(); dependencies.register!ExampleClass.existingInstance(preExistingInstance); ``` -Autowiring +Automatic Injection ---------- The real value of any dependency injection framework comes from its ability to automatically inject dependencies. Poodinis supports automatic injection either through autowiring members annotated with the `@Autowire` UDA or through constructor injection. ### UDA-based autowiring