Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDani Megert2005-06-21 12:05:59 +0000
committerDani Megert2005-06-21 12:05:59 +0000
commit44b979bc7a2eca9d7c0e40e53757d9e68130d0a7 (patch)
tree7352397aca57c380c74487e36c474e73c1541fd3 /org.eclipse.text/projection
parenta2c9a42458d44d784ebcb98cb2850254e7c10049 (diff)
downloadeclipse.platform.text-44b979bc7a2eca9d7c0e40e53757d9e68130d0a7.tar.gz
eclipse.platform.text-44b979bc7a2eca9d7c0e40e53757d9e68130d0a7.tar.xz
eclipse.platform.text-44b979bc7a2eca9d7c0e40e53757d9e68130d0a7.zip
Spelling
Diffstat (limited to 'org.eclipse.text/projection')
-rw-r--r--org.eclipse.text/projection/org/eclipse/jface/text/projection/Segment.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.text/projection/org/eclipse/jface/text/projection/Segment.java b/org.eclipse.text/projection/org/eclipse/jface/text/projection/Segment.java
index 0d904ed2426..590a1494cf7 100644
--- a/org.eclipse.text/projection/org/eclipse/jface/text/projection/Segment.java
+++ b/org.eclipse.text/projection/org/eclipse/jface/text/projection/Segment.java
@@ -28,7 +28,7 @@ public class Segment extends Position {
public Fragment fragment;
/** A flag indicating that the segment updater should stretch this segment when a change happens at its boundaries. */
public boolean isMarkedForStretch;
- /** A flag indicating that the segment updater should shift this segment when a change happends at its boundaries. */
+ /** A flag indicating that the segment updater should shift this segment when a change happens at its boundaries. */
public boolean isMarkedForShift;
/**
@@ -72,7 +72,7 @@ public class Segment extends Position {
}
/**
- * Clears the shifting and the streching flag.
+ * Clears the shifting and the stretching flag.
*/
public void clearMark() {
isMarkedForStretch= false;

Back to the top