Bug 474264: Need an easier to use variant of Job.create method
diff --git a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java
index 8e5cd9b..2d621b7 100644
--- a/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java
+++ b/bundles/org.eclipse.equinox.common/src/org/eclipse/core/runtime/ICoreRunnable.java
@@ -32,8 +32,8 @@
 	 *     calling {@link IProgressMonitor#done()} on the given monitor, and
 	 *     the caller must not rely on {@link IProgressMonitor#done()} having been
 	 *     called by the receiver.
-	 * @exception CoreException if this operation fails.
-	 * @exception OperationCanceledException if the operation is canceled.
+	 * @exception CoreException if this operation fails
+	 * @exception OperationCanceledException if this operation is canceled
 	 */
 	public void run(IProgressMonitor monitor) throws CoreException;
 }