Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindNextAction.java')
-rw-r--r--org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindNextAction.java7
1 files changed, 4 insertions, 3 deletions
diff --git a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindNextAction.java b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindNextAction.java
index 6afa1938990..77c51242405 100644
--- a/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindNextAction.java
+++ b/org.eclipse.ui.workbench.texteditor/src/org/eclipse/ui/texteditor/FindNextAction.java
@@ -36,11 +36,12 @@ import org.eclipse.ui.part.EditorActionBarContributor;
/**
- * An action which finds the next/previous occurrence of the last search or
- * the current selection if present.
+ * An action which finds the next/previous occurrence of the last search or the
+ * current selection if present.
* <p>
* This class may be instantiated; it is not intended to be subclassed.
* </p>
+ *
* @since 2.0
*/
public class FindNextAction extends ResourceAction implements IUpdate {
@@ -382,7 +383,7 @@ public class FindNextAction extends ResourceAction implements IUpdate {
/*
* 1GF86V3: ITPUI:WINNT - Internal errors using Find/Replace Dialog
- * Now uses TextUtilities rather than focussing on '\n'
+ * Now uses TextUtilities rather than focusing on '\n'
*/
String selection= fTarget.getSelectionText();
if (selection != null && selection.length() > 0) {

Back to the top