Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java')
-rw-r--r--org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java
index b72100554..c1f30cf17 100644
--- a/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java
+++ b/org.eclipse.debug.core/core/org/eclipse/debug/core/commands/IDebugCommandRequest.java
@@ -13,7 +13,7 @@ package org.eclipse.debug.core.commands;
import org.eclipse.debug.core.IRequest;
/**
- * A request to execute a command on specific elements. A debug command request is
+ * A request to execute a command on specific elements. A debug command request is
* passed to a {@link IDebugCommandHandler} when a command is invoked.
* <p>
* Clients that invoke command handlers may implement this interface.
@@ -24,7 +24,7 @@ public interface IDebugCommandRequest extends IRequest {
/**
* Returns the elements to execute a command on.
- *
+ *
* @return elements to execute a command on
*/
public Object[] getElements();

Back to the top