Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
index a0e5f832e..5272b58f9 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/model/IBreakpoint.java
@@ -43,12 +43,12 @@ import org.eclipse.debug.core.DebugPlugin;
* markerType="com.example.BreakpointMarker">
* </breakpoint>
* </extension>
- * <extension point="org.eclipse.core.resources.markers">
- * <marker
+ * <extension
+ * point="org.eclipse.core.resources.markers"
* id="com.example.BreakpointMarker"
- * super type="org.eclipse.debug.core.breakpointMarker"
- * attribute name ="exampleAttribute">
- * </marker>
+ * name="Example Breakpoint">
+ * <super type="org.eclipse.debug.core.breakpointMarker"/>
+ * <attribute name="exampleAttribute"/>
* </extension>
* </pre>
* <p>

Back to the top