summaryrefslogtreecommitdiffstats
path: root/server/src/com/vaadin/ui/PopupDateField.java
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2013-05-02 11:39:29 +0300
committerVaadin Code Review <review@vaadin.com>2013-05-02 11:30:45 +0000
commitba81387369ec43ae9ddf5c1b94a5ffae2f8ad1e1 (patch)
treed865ea3947d46dfc86c499750cdf0a65da2084bd /server/src/com/vaadin/ui/PopupDateField.java
parent087756f1a6472af100686fdfebd7aa273faa0059 (diff)
downloadvaadin-framework-ba81387369ec43ae9ddf5c1b94a5ffae2f8ad1e1.tar.gz
vaadin-framework-ba81387369ec43ae9ddf5c1b94a5ffae2f8ad1e1.zip
Fix typo (#11754)
Change-Id: Ib9f75c81a18a555b34cd620260f85063c58c90ce
Diffstat (limited to 'server/src/com/vaadin/ui/PopupDateField.java')
-rw-r--r--server/src/com/vaadin/ui/PopupDateField.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/server/src/com/vaadin/ui/PopupDateField.java b/server/src/com/vaadin/ui/PopupDateField.java
index e95941e3fe..f0bb0d74fe 100644
--- a/server/src/com/vaadin/ui/PopupDateField.java
+++ b/server/src/com/vaadin/ui/PopupDateField.java
@@ -122,10 +122,10 @@ public class PopupDateField extends DateField {
* Set a description that explains the usage of the Widget for users of
* assistive devices.
*
- * @param descriptionForAssistiveDevices
+ * @param description
* String with the description
*/
- public void setAssisitiveText(String description) {
+ public void setAssistiveText(String description) {
getState().descriptionForAssistiveDevices = description;
}
@@ -135,7 +135,7 @@ public class PopupDateField extends DateField {
*
* @return String with the description
*/
- public String getAssisitiveText() {
+ public String getAssistiveText() {
return getState().descriptionForAssistiveDevices;
}
}