diff options
author | Ahmed Ashour <asashour@yahoo.com> | 2017-09-25 06:54:30 +0200 |
---|---|---|
committer | Henri Sara <henri.sara@gmail.com> | 2017-09-25 07:54:30 +0300 |
commit | 3c0c3e0a997f66821d037df641c435dda930a890 (patch) | |
tree | 152afe8c3340dafaa50562f1a21a3b2325583639 /client | |
parent | 40d15b32e341a38dacc24cc3ec79ab3ff0a25a50 (diff) | |
download | vaadin-framework-3c0c3e0a997f66821d037df641c435dda930a890.tar.gz vaadin-framework-3c0c3e0a997f66821d037df641c435dda930a890.zip |
Fix typos (#10071)
And use varargs in a test.
Diffstat (limited to 'client')
-rw-r--r-- | client/src/main/java/com/vaadin/client/ui/VAbstractCalendarPanel.java | 4 | ||||
-rw-r--r-- | client/src/main/java/com/vaadin/client/widgets/Overlay.java | 2 |
2 files changed, 3 insertions, 3 deletions
diff --git a/client/src/main/java/com/vaadin/client/ui/VAbstractCalendarPanel.java b/client/src/main/java/com/vaadin/client/ui/VAbstractCalendarPanel.java index f503c4689a..b1e5843125 100644 --- a/client/src/main/java/com/vaadin/client/ui/VAbstractCalendarPanel.java +++ b/client/src/main/java/com/vaadin/client/ui/VAbstractCalendarPanel.java @@ -903,7 +903,7 @@ public abstract class VAbstractCalendarPanel<R extends Enum<R>> * Performs the rendering required by the {@link #renderCalendar(boolean)}. * Subclasses may override this method to provide a custom implementation * avoiding {@link #renderCalendar(boolean)} override. The latter method - * contains a common logic which should not be overriden. + * contains a common logic which should not be overridden. * * @param updateDate * The value false prevents setting the selected date of the @@ -1485,7 +1485,7 @@ public abstract class VAbstractCalendarPanel<R extends Enum<R>> /** * Returns the reset key which will reset the calendar to the previous - * selection. By default this is backspace but it can be overriden to change + * selection. By default this is backspace but it can be overridden to change * the key to whatever you want. * * @return diff --git a/client/src/main/java/com/vaadin/client/widgets/Overlay.java b/client/src/main/java/com/vaadin/client/widgets/Overlay.java index 86758e3173..78d73dd398 100644 --- a/client/src/main/java/com/vaadin/client/widgets/Overlay.java +++ b/client/src/main/java/com/vaadin/client/widgets/Overlay.java @@ -552,7 +552,7 @@ public class Overlay extends PopupPanel { /** * Returns true if we should add a shim iframe below the overlay to deal - * with zindex issues with PDFs and applets. Can be overriden to disable + * with zindex issues with PDFs and applets. Can be overridden to disable * shim iframes if they are not needed. * * @return true if a shim iframe should be added, false otherwise |