Fix Inject documentation, as method injection happens after field injection.
-------------
Created by MOE: http://code.google.com/p/moe-java
MOE_MIGRATED_REVID=50901673
diff --git a/core/src/com/google/inject/Inject.java b/core/src/com/google/inject/Inject.java
index e96dfa9..e3bbd27 100644
--- a/core/src/com/google/inject/Inject.java
+++ b/core/src/com/google/inject/Inject.java
@@ -34,7 +34,7 @@
  * <li>Every instance it constructs. The class being constructed must have
  * exactly one of its constructors marked with {@code @Inject} or must have a
  * constructor taking no parameters. The Injector then proceeds to perform
- * method and field injections.
+ * field and method injections.
  * 
  * <li>Pre-constructed instances passed to {@link Injector#injectMembers},
  * {@link com.google.inject.binder.LinkedBindingBuilder#toInstance(Object)} and