Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--org.eclipse.text/src/org/eclipse/jface/text/TextUtilities.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.text/src/org/eclipse/jface/text/TextUtilities.java b/org.eclipse.text/src/org/eclipse/jface/text/TextUtilities.java
index e1ae515072f..733c831cb00 100644
--- a/org.eclipse.text/src/org/eclipse/jface/text/TextUtilities.java
+++ b/org.eclipse.text/src/org/eclipse/jface/text/TextUtilities.java
@@ -589,7 +589,7 @@ public class TextUtilities {
* @param text the text to be searched. Not <code>null</code>.
* @param offset the offset in text at which to start the search
* @return a <code>Map.Entry&lt;Integer, String&gt;</code> where key is index of found delimiter
- * or <code>-1<code> if non found and value is the delimiter found or <code>null</code>
+ * or <code>-1</code> if non found and value is the delimiter found or <code>null</code>
* if non found. The return value itself is never <code>null</code>.
* @since 3.10
*/

Back to the top