Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSrikanth2011-12-05 05:33:55 +0000
committerSrikanth2011-12-05 05:33:55 +0000
commitc077066d38e166a56e4eb4a0d6b6c8b7125fd6f2 (patch)
treeff53892e2f1b7eec389e329e642a8dd2441bcba6 /org.eclipse.jdt.annotation/src
parent58f6afc12cba62ef8d27c501894e3dd000ed5c7a (diff)
downloadeclipse.jdt.core-c077066d38e166a56e4eb4a0d6b6c8b7125fd6f2.tar.gz
eclipse.jdt.core-c077066d38e166a56e4eb4a0d6b6c8b7125fd6f2.tar.xz
eclipse.jdt.core-c077066d38e166a56e4eb4a0d6b6c8b7125fd6f2.zip
Partial fix for review comments captured in bug 365387v20111205-0533
Diffstat (limited to 'org.eclipse.jdt.annotation/src')
-rw-r--r--org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNull.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNull.java b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNull.java
index 78aa71cbce..93727394bb 100644
--- a/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNull.java
+++ b/org.eclipse.jdt.annotation/src/org/eclipse/jdt/annotation/NonNull.java
@@ -35,8 +35,8 @@ import java.lang.annotation.Target;
* <li>Nullness of the value can be statically determined, the entity is definitely bound from either of:
* <ul><li>the value <code>null</code>, or</li>
* <li>an entity with a {@link Nullable @Nullable} type.</li></ul></li>
- * <li>Nullness can not definitely be determined, because different code branches yield different results.</li>
- * <li>Nullness can not be determined, because other program elements are involved for which
+ * <li>Nullness cannot definitely be determined, because different code branches yield different results.</li>
+ * <li>Nullness cannot be determined, because other program elements are involved for which
* null annotations are lacking.</li>
* </ol>
* </p>

Back to the top