diff options
Diffstat (limited to 'server/src/main/java/com')
-rw-r--r-- | server/src/main/java/com/vaadin/annotations/DesignRoot.java | 10 | ||||
-rw-r--r-- | server/src/main/java/com/vaadin/server/WebBrowser.java | 2 | ||||
-rw-r--r-- | server/src/main/java/com/vaadin/ui/Embedded.java | 2 |
3 files changed, 7 insertions, 7 deletions
diff --git a/server/src/main/java/com/vaadin/annotations/DesignRoot.java b/server/src/main/java/com/vaadin/annotations/DesignRoot.java index c3d25b78b6..694ca8c35b 100644 --- a/server/src/main/java/com/vaadin/annotations/DesignRoot.java +++ b/server/src/main/java/com/vaadin/annotations/DesignRoot.java @@ -26,11 +26,11 @@ import com.vaadin.ui.declarative.Design; * Marks the component as the root of a design (html) file. * <p> * Used together with {@link Design#read(com.vaadin.ui.Component)} to be able - * the load the design without further configuration. By default, the design - * is loaded from the same package as the annotated class and the design - * filename is derived from the class name. You can override the default - * behaviour by using the {@link #value()} parameter in order to load the - * design from a different package or with a non-default filename. + * the load the design without further configuration. By default, the design is + * loaded from the same package as the annotated class and the design filename + * is derived from the class name. You can override the default behavior by + * using the {@link #value()} parameter in order to load the design from a + * different package or with a non-default filename. * * @since 7.4 * @author Vaadin Ltd diff --git a/server/src/main/java/com/vaadin/server/WebBrowser.java b/server/src/main/java/com/vaadin/server/WebBrowser.java index f9304e5281..b221d3ff6d 100644 --- a/server/src/main/java/com/vaadin/server/WebBrowser.java +++ b/server/src/main/java/com/vaadin/server/WebBrowser.java @@ -527,7 +527,7 @@ public class WebBrowser implements Serializable { locale = request.getLocale(); address = request.getRemoteAddr(); secureConnection = request.isSecure(); - // Headers are case insensitive according to the specifiation but are + // Headers are case insensitive according to the specification but are // case sensitive in Weblogic portal... String agent = request.getHeader("User-Agent"); diff --git a/server/src/main/java/com/vaadin/ui/Embedded.java b/server/src/main/java/com/vaadin/ui/Embedded.java index 92099b9e68..7fb9a7aa06 100644 --- a/server/src/main/java/com/vaadin/ui/Embedded.java +++ b/server/src/main/java/com/vaadin/ui/Embedded.java @@ -265,7 +265,7 @@ public class Embedded extends AbstractComponent { * Automatically add wmode transparent as we use lots of * floating layers in Vaadin. If developers need better flash * performance, they can override this value programmatically - * back to "window" (the defautl). + * back to "window" (the default). */ if (getParameter("wmode") == null) { setParameter("wmode", "transparent"); |