aboutsummaryrefslogtreecommitdiffstats
path: root/client
diff options
context:
space:
mode:
authorLeif Åstrand <leif@vaadin.com>2014-04-04 15:55:11 +0300
committerLeif Åstrand <leif@vaadin.com>2014-04-04 15:55:11 +0300
commit752249d52d1fdda3f3ff36323ddf0a10ee8ee108 (patch)
treed6bac98752367cf770538e67ae3366ef879d284d /client
parentbf4cebc36c3efa6bbd42f16f30d6a06a4bf94527 (diff)
downloadvaadin-framework-752249d52d1fdda3f3ff36323ddf0a10ee8ee108.tar.gz
vaadin-framework-752249d52d1fdda3f3ff36323ddf0a10ee8ee108.zip
Fix typo in @OnStateChange javadoc (#12958)
Change-Id: I37f40eea6185b682e909da5b3f4c755b20a688e5
Diffstat (limited to 'client')
-rw-r--r--client/src/com/vaadin/client/annotations/OnStateChange.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/annotations/OnStateChange.java b/client/src/com/vaadin/client/annotations/OnStateChange.java
index 80c1095458..8223507b7f 100644
--- a/client/src/com/vaadin/client/annotations/OnStateChange.java
+++ b/client/src/com/vaadin/client/annotations/OnStateChange.java
@@ -27,7 +27,7 @@ import com.vaadin.client.communication.StateChangeEvent;
* Marks a method in Connector classes that should be used to handle changes to
* specific properties in the connector's shared state.
* <p>
- * The annotated method will by called whenever at least one of the named state
+ * The annotated method will be called whenever at least one of the named state
* properties have changed. If multiple listened properties are changed by the
* same {@link StateChangeEvent}, the method will only be called once.
* <p>