From ee35b07a87dff3e45fce5dde466bc1cb950d449b Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Tue, 6 Dec 2016 23:23:55 +0100 Subject: [PATCH] Fix incorrect documentation --- source/poodinis/autowire.d | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/source/poodinis/autowire.d b/source/poodinis/autowire.d index 3f69bad..1802232 100644 --- a/source/poodinis/autowire.d +++ b/source/poodinis/autowire.d @@ -95,12 +95,9 @@ private void printDebugAutowiredInstance(TypeInfo instanceType, void* instanceAd /** * Autowires members of a given instance using dependencies registered in the given container. * - * All public members of the given instance, which are annotated using the "Autowire" UDA, are autowired. - * All members are resolved using the given container. Qualifiers are used to determine the type of class to - * resolve for any member of instance. - * - * Note that private members will not be autowired because the autowiring mechanism is not able to by-pass - * member visibility protection. + * All members of the given instance, which are annotated using the "Autowire" UDA, are autowired. + * Members can have any visibility (public, private, etc). All members are resolved using the given + * container. Qualifiers are used to determine the type of class to resolve for any member of instance. * * See_Also: Autowire */