summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/javax/inject/Inject.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/javax/inject/Inject.java b/src/javax/inject/Inject.java
index e8bdfb4..88a3266 100644
--- a/src/javax/inject/Inject.java
+++ b/src/javax/inject/Inject.java
@@ -97,9 +97,9 @@ import static java.lang.annotation.ElementType.FIELD;
*
* <p>A {@linkplain Qualifier qualifier} may annotate an injectable field
* or parameter and, combined with the type, identify the implementation to
- * inject. Qualifiers are optional and when used with {@code @Inject}, no more
- * than one qualifier should annotate a single field or parameter. The
- * qualifiers are bold in the following example:
+ * inject. Qualifiers are optional, and when used with {@code @Inject} in
+ * injector-independent classes, no more than one qualifier should annotate a
+ * single field or parameter. The qualifiers are bold in the following example:
*
* <pre>
* public class Car {