aboutsummaryrefslogtreecommitdiffstats
path: root/shared
diff options
context:
space:
mode:
Diffstat (limited to 'shared')
-rw-r--r--shared/src/com/vaadin/shared/ui/label/ContentMode.java10
1 files changed, 5 insertions, 5 deletions
diff --git a/shared/src/com/vaadin/shared/ui/label/ContentMode.java b/shared/src/com/vaadin/shared/ui/label/ContentMode.java
index ed0c66bc62..f5b984d496 100644
--- a/shared/src/com/vaadin/shared/ui/label/ContentMode.java
+++ b/shared/src/com/vaadin/shared/ui/label/ContentMode.java
@@ -27,7 +27,7 @@ public enum ContentMode {
TEXT,
/**
- * Content mode, where the label contains pre formatted text. In this mode
+ * Content mode, where the label contains preformatted text. In this mode
* newlines are preserved when rendered on the screen.
*/
PREFORMATTED,
@@ -39,18 +39,18 @@ public enum ContentMode {
/**
* Content mode, where the label contains well-formed or well-balanced XML.
- * This is handled in the same way as {@link #XHTML}.
+ * This is handled in the same way as {@link #HTML}.
*
- * @deprecated Use {@link #XHTML} instead
+ * @deprecated Use {@link #HTML} instead
*/
@Deprecated
XML,
/**
* Legacy content mode, where the label contains RAW output. This is handled
- * in exactly the same way as {@link #XHTML}.
+ * in exactly the same way as {@link #HTML}.
*
- * @deprecated Use {@link #XHTML} instead
+ * @deprecated Use {@link #HTML} instead
*/
@Deprecated
RAW;