From 0d56a4e5c37db0231e7043043b6ef9854f9b7bbc Mon Sep 17 00:00:00 2001 From: Mike Bierlee Date: Sun, 15 Feb 2015 17:13:59 +0100 Subject: [PATCH] Add additional motivation to documentation. --- source/poodinis/autowire.d | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/source/poodinis/autowire.d b/source/poodinis/autowire.d index e9a4ac1..36b04f0 100644 --- a/source/poodinis/autowire.d +++ b/source/poodinis/autowire.d @@ -63,7 +63,7 @@ struct Autowire(QualifierType = UseMemberType) { }; /** - * Alias to "Autowire" UDA for those used to Spring. + * Alias to "Autowire" UDA for those used to Spring's @Autowired annotation. */ alias Autowired = Autowire; @@ -74,7 +74,8 @@ alias Autowired = Autowire; * 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. + * Note that private members will not be autowired because the autowiring mechanism is not able to by-pass + * member visibility protection. * * See_Also: Autowire */