diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerAction.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerAction.java
index 672d73ece3c..a9643cd36c5 100644
--- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerAction.java
+++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerAction.java
@@ -38,13 +38,13 @@ import org.eclipse.ui.texteditor.ITextEditor;
import org.eclipse.ui.texteditor.IUpdate;
/**
- * Action to interactively create a breakpoint from vertical ruler of a
+ * Action to interactively create a breakpoint from the vertical ruler of a
* workbench part containing a document. The part must provide an
* IToggleBreakpointsTargetExtension2
adapter.
*
* Clients may instantiate this class. *
- * @since 3.8 + * @since 7.2 * @see org.eclipse.debug.ui.actions.RulerToggleBreakpointActionDelegate */ public class CAddBreakpointInteractiveRulerAction extends Action implements IUpdate { diff --git a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerActionDelegate.java b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerActionDelegate.java index c6a4e0edb9b..eba8a9cc7db 100644 --- a/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerActionDelegate.java +++ b/debug/org.eclipse.cdt.debug.ui/src/org/eclipse/cdt/debug/internal/ui/actions/breakpoints/CAddBreakpointInteractiveRulerActionDelegate.java @@ -22,11 +22,11 @@ import org.eclipse.ui.texteditor.ITextEditor; * Creates a breakpoint interactively, that is with user input as well as context * information gathered from editor location. This action delegate can be * contributed to an editor with theeditorActions
extension point.
- * This action is as a factory that creates another action that performs the
+ * This action is a factory that creates another action that performs the
* actual breakpoint toggling. The created action acts on the editor's
- * IToggleBreakpointsTagretCExtension
to create the breakpoint.
+ * IToggleBreakpointsTargetCExtension
to create the breakpoint.
*
- * This action should be be contributed to a vertical ruler context menu via the
+ * This action should be contributed to a vertical ruler context menu via the
* popupMenus
extension point, by referencing the ruler's context
* menu identifier in the targetID
attribute.
*