Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'bundles/org.eclipse.compare.core/src/org/eclipse/compare/rangedifferencer/IRangeComparator.java')
-rw-r--r--bundles/org.eclipse.compare.core/src/org/eclipse/compare/rangedifferencer/IRangeComparator.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/rangedifferencer/IRangeComparator.java b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/rangedifferencer/IRangeComparator.java
index c466aa030..31ba1eefb 100644
--- a/bundles/org.eclipse.compare.core/src/org/eclipse/compare/rangedifferencer/IRangeComparator.java
+++ b/bundles/org.eclipse.compare.core/src/org/eclipse/compare/rangedifferencer/IRangeComparator.java
@@ -18,8 +18,8 @@ package org.eclipse.compare.rangedifferencer;
* <p>
* For example, to compare two text documents and find longest common sequences
* of matching and non-matching lines, the implementation must break the document
- * into lines. <code>getRangeCount</code> would return the number of lines in the
- * document, and <code>rangesEqual</code> would compare a specified line given
+ * into lines. <code>getRangeCount</code> would return the number of lines in the
+ * document, and <code>rangesEqual</code> would compare a specified line given
* with one in another <code>IRangeComparator</code>.
* </p>
* <p>
@@ -31,7 +31,7 @@ public interface IRangeComparator {
/**
* Returns the number of comparable entities.
*
- * @return the number of comparable entities
+ * @return the number of comparable entities
*/
int getRangeCount();
@@ -48,7 +48,7 @@ public interface IRangeComparator {
/**
* Returns whether a comparison should be skipped because it would be too costly (or lengthy).
- *
+ *
* @param length a number on which to base the decision whether to return
* <code>true</code> or <code>false</code>
* @param maxLength another number on which to base the decision whether to return

Back to the top