Javadoc problems
diff --git a/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java b/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java
index f65a76c..e419c75 100644
--- a/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java
+++ b/bundles/org.eclipse.core.runtime/src/org/eclipse/core/runtime/Plugin.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2000, 2014 IBM Corporation and others.
+ * Copyright (c) 2000, 2015 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
@@ -310,7 +310,7 @@
* it puts there. It is recommended for plug-in preference settings and
* other configuration parameters.
* </p>
- * @throws IllegalStateException, when the system is running with no data area (-data @none),
+ * @throws IllegalStateException when the system is running with no data area (-data @none),
* or when a data area has not been set yet.
* @return a local file system path
* XXX Investigate the usage of a service factory (see also platform.getStateLocation)
@@ -349,7 +349,7 @@
* @deprecated Replaced by {@link IEclipsePreferences}. Preferences are now stored according
* to scopes in the {@link IPreferencesService}. The return value of this method corresponds to
* a combination of the {@link InstanceScope} and the {@link DefaultScope}. To set preferences
- * for your plug-in, use <tt>new InstanceScope().getNode(<&yourPluginId>)</tt>. To set default
+ * for your plug-in, use <tt>new InstanceScope().getNode(<yourPluginId>)</tt>. To set default
* preferences for your plug-in, use <tt>new DefaultScope().getNode(<yourPluginId>)</tt>.
* To lookup an integer preference value for your plug-in, use
* <tt>Platform.getPreferencesService().getInt(<yourPluginId>, <preferenceKey>, <defaultValue>, null)</tt>.
@@ -449,8 +449,8 @@
* This class should be contributed via the
* <code>org.eclipse.core.runtime.preferences</code> extension point.
* <pre>
- * <extension point=&quo;org.eclipse.core.runtime.preferences&quo;>
- * <initializer class=&quo;com.example.MyPreferenceInitializer&quo;/>
+ * <extension point="org.eclipse.core.runtime.preferences">
+ * <initializer class="com.example.MyPreferenceInitializer"/>
* </extension>
* ...
* package com.example;