Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDeepak Azad2012-04-29 06:25:58 +0000
committerDeepak Azad2012-04-29 06:25:58 +0000
commitae6008e004d54d180a81925bf335d6e5d61f5a06 (patch)
tree53f6d8cc30d11cf288eb7e6bb57e1ebe35c270b5
parentd77b869a7d4dfbe10b70b1c20be1d83e586434af (diff)
downloadeclipse.platform.text-ae6008e004d54d180a81925bf335d6e5d61f5a06.tar.gz
eclipse.platform.text-ae6008e004d54d180a81925bf335d6e5d61f5a06.tar.xz
eclipse.platform.text-ae6008e004d54d180a81925bf335d6e5d61f5a06.zip
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/source/ICharacterPairMatcher.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ICharacterPairMatcher.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ICharacterPairMatcher.java
index 5e09b636e29..d916eb9997c 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ICharacterPairMatcher.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/source/ICharacterPairMatcher.java
@@ -83,10 +83,10 @@ public interface ICharacterPairMatcher {
IRegion match(IDocument document, int offset);
/**
- * Returns the anchor for the region of the matching peer characters. The anchor
- * says whether the character that has been chosen to search for its peer character
- * has been left or right of the initial offset.
- *
+ * Returns the anchor for the region of the matching peer characters. The anchor says whether
+ * the character that has been chosen to search for its peer character has been the left or the
+ * right character of the pair.
+ *
* @return <code>RIGHT</code> or <code>LEFT</code>
*/
int getAnchor();

Back to the top