summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorBob Lee <crazybob@crazybob.org>2009-09-30 21:46:36 +0000
committerBob Lee <crazybob@crazybob.org>2009-09-30 21:46:36 +0000
commit04063c417448de04d97bf51e4c72e9d8a2aba49f (patch)
tree1d31a7b411d0d822dde16d5ca3722651ef7d5e02 /src
parentbfc0343b82a4ade1ef57a233b93a3c482fa2dc10 (diff)
downloadplatform_external_jsr330-04063c417448de04d97bf51e4c72e9d8a2aba49f.tar.gz
platform_external_jsr330-04063c417448de04d97bf51e4c72e9d8a2aba49f.tar.bz2
platform_external_jsr330-04063c417448de04d97bf51e4c72e9d8a2aba49f.zip
s/subclass/subtype/. Added a couple more test cases.
git-svn-id: https://atinject.googlecode.com/svn/trunk@45 3bc8319c-20ab-11de-9edc-3f40a397ab60
Diffstat (limited to 'src')
-rw-r--r--src/javax/inject/Inject.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/javax/inject/Inject.java b/src/javax/inject/Inject.java
index fe41467..7dc7b76 100644
--- a/src/javax/inject/Inject.java
+++ b/src/javax/inject/Inject.java
@@ -32,7 +32,7 @@ import static java.lang.annotation.ElementType.FIELD;
* in superclasses are injected before those in subclasses. Ordering of
* injection among fields and among methods in the same class is not specified.
* For a given type T and optional qualifier, an injector must
- * be able to inject a user-specified subclass of T that has an injectable
+ * be able to inject a user-specified subtype of T that has an injectable
* constructor. Beyond that, which values are injected depend upon the
* injector implementation and its configuration.
*