aboutsummaryrefslogtreecommitdiffstats
path: root/server/src
diff options
context:
space:
mode:
authorChristophe Bismuth <cbismuth@users.noreply.github.com>2017-06-19 15:34:43 +0200
committerIlia Motornyi <elmot@vaadin.com>2017-06-19 16:34:43 +0300
commitfd78c9b4c656125ef03d1859e981869eb589c447 (patch)
tree6997b580e3889d97db88c94e5294a3b1cf63bf8a /server/src
parentfa10456957a880e5860080a9dcccf39827c97700 (diff)
downloadvaadin-framework-fd78c9b4c656125ef03d1859e981869eb589c447.tar.gz
vaadin-framework-fd78c9b4c656125ef03d1859e981869eb589c447.zip
Fix minor Java documentation typo in Button#click API
Diffstat (limited to 'server/src')
-rw-r--r--server/src/main/java/com/vaadin/ui/Button.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/src/main/java/com/vaadin/ui/Button.java b/server/src/main/java/com/vaadin/ui/Button.java
index d0194924c4..832835332d 100644
--- a/server/src/main/java/com/vaadin/ui/Button.java
+++ b/server/src/main/java/com/vaadin/ui/Button.java
@@ -339,7 +339,7 @@ public class Button extends AbstractFocusable
/**
* Simulates a button click, notifying all server-side listeners.
*
- * No action is taken is the button is disabled.
+ * No action is taken if the button is disabled.
*/
public void click() {
if (isEnabled()) {