fixed broken Javadoc inline links
diff --git a/bundles/org.eclipse.core.expressions/src/org/eclipse/core/expressions/ExpressionInfo.java b/bundles/org.eclipse.core.expressions/src/org/eclipse/core/expressions/ExpressionInfo.java
index 5201761..f5ed8d8 100644
--- a/bundles/org.eclipse.core.expressions/src/org/eclipse/core/expressions/ExpressionInfo.java
+++ b/bundles/org.eclipse.core.expressions/src/org/eclipse/core/expressions/ExpressionInfo.java
@@ -1,5 +1,5 @@
 /*******************************************************************************
- * Copyright (c) 2000, 2008 IBM Corporation and others.
+ * Copyright (c) 2000, 2013 IBM Corporation and others.
  * All rights reserved. This program and the accompanying materials
  * are made available under the terms of the Eclipse Public License v1.0
  * which accompanies this distribution, and is available at
@@ -133,14 +133,14 @@
 	}
 
 	/**
-	 * Returns the set of expression types which don't implement the
-	 * new (@link Expression#computeReevaluationInfo(IEvaluationContext)}
-	 * method. If one expression didn't implement the method the expression
-	 * tree no optimizations can be done. Returns <code>null</code> if
+	 * Returns the set of expression types which don't reimplement the
+	 * new {@link Expression#collectExpressionInfo(ExpressionInfo)}
+	 * method. If one expression in the expression tree didn't implement the
+	 * method, then no optimizations can be done. Returns <code>null</code> if
 	 * all expressions implement the method.
 	 *
 	 * @return the set of expression types which don't implement the
-	 *  <code>computeReevaluationInfo</code> method.
+	 *  <code>computeReevaluationInfo</code> method, or <code>null</code> if all do
 	 */
 	public Class[] getMisbehavingExpressionTypes() {
 		if (fMisbehavingExpressionTypes == null)
diff --git a/bundles/org.eclipse.e4.core.services/src/org/eclipse/e4/core/services/events/IEventBroker.java b/bundles/org.eclipse.e4.core.services/src/org/eclipse/e4/core/services/events/IEventBroker.java
index 6996d9b..9278cb6 100644
--- a/bundles/org.eclipse.e4.core.services/src/org/eclipse/e4/core/services/events/IEventBroker.java
+++ b/bundles/org.eclipse.e4.core.services/src/org/eclipse/e4/core/services/events/IEventBroker.java
@@ -16,8 +16,7 @@
 import org.osgi.service.event.EventHandler;
 
 /**
- * To obtain an instance of the event broker service from the @link {@link IEclipseContext} context,
- * use
+ * To obtain an instance of the event broker service from the {@link IEclipseContext} context, use
  * 
  * <pre>
  * (IEventBroker) context.get(IEventBroker.class.getName())