fixed javadoc warnings
diff --git a/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/IEclipseContext.java b/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/IEclipseContext.java
index 5a0459f..c47f3d6 100644
--- a/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/IEclipseContext.java
+++ b/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/IEclipseContext.java
@@ -62,7 +62,7 @@
 	 * <code>null</code>.
 	 * <p>
 	 * If the value associated with this name is an {@link ContextFunction}, this method will
-	 * evaluate {@link ContextFunction#compute(IEclipseContext, Object[])} with zero arguments.
+	 * evaluate {@link ContextFunction#compute(IEclipseContext)}.
 	 * </p>
 	 * @param name the name of the value to return
 	 * @return an object corresponding to the given name, or <code>null</code>
@@ -85,8 +85,7 @@
 	 * </p>
 	 * <p>
 	 * If the value associated with this name is an {@link ContextFunction}, this method will
-	 * evaluate {@link ContextFunction#compute(IEclipseContext, Object[])} with zero
-	 * arguments.
+	 * evaluate {@link ContextFunction#compute(IEclipseContext)}.
 	 * </p>
 	 * @param name the name of the value to return
 	 * @return an object corresponding to the given name, or <code>null</code>
@@ -158,7 +157,7 @@
 	 * Sets a value to be associated with a given name in this context. The value may be an
 	 * arbitrary object, or it may be an {@link ContextFunction}. In the case of a function,
 	 * subsequent invocations of {@link #get(String)} with the same name will invoke
-	 * {@link ContextFunction#compute(IEclipseContext, Object[])} to obtain the value. The value
+	 * {@link ContextFunction#compute(IEclipseContext)} to obtain the value. The value
 	 * may be <code>null</code>.
 	 * <p>
 	 * Removal can never affect a parent context, so it is possible that a subsequent call to
diff --git a/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/RunAndTrack.java b/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/RunAndTrack.java
index 4d94a74..c8000fd 100644
--- a/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/RunAndTrack.java
+++ b/bundles/org.eclipse.e4.core.contexts/src/org/eclipse/e4/core/contexts/RunAndTrack.java
@@ -12,7 +12,7 @@
 
 /**
  * Extended version of a runnable that can be used with the
- * {@link IEclipseContext#runAndTrack(IRunAndTrack)} version gets more detailed
+ * {@link IEclipseContext#runAndTrack(RunAndTrack)} version gets more detailed
  * information on the change, such as the service name and the event type.
  */
 abstract public class RunAndTrack {