Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'org.eclipse.jface.text/src/org/eclipse/jface/text/TextAttribute.java')
-rw-r--r--org.eclipse.jface.text/src/org/eclipse/jface/text/TextAttribute.java8
1 files changed, 4 insertions, 4 deletions
diff --git a/org.eclipse.jface.text/src/org/eclipse/jface/text/TextAttribute.java b/org.eclipse.jface.text/src/org/eclipse/jface/text/TextAttribute.java
index c11c93beebf..bff933aaed1 100644
--- a/org.eclipse.jface.text/src/org/eclipse/jface/text/TextAttribute.java
+++ b/org.eclipse.jface.text/src/org/eclipse/jface/text/TextAttribute.java
@@ -28,15 +28,15 @@ import org.eclipse.swt.graphics.Font;
public class TextAttribute {
/**
- * Text attribute for strikethrough style.
- * (value <code>1 << 29</code>).
+ * Text attribute for strikethrough style. (value <code>1 &lt;&lt; 29</code>).
+ *
* @since 3.1
*/
public static final int STRIKETHROUGH= 1 << 29;
/**
- * Text attribute for underline style.
- * (value <code>1 << 30</code>)
+ * Text attribute for underline style. (value <code>1 &lt;&lt; 30</code>)
+ *
* @since 3.1
*/
public static final int UNDERLINE= 1 << 30;

Back to the top