aboutsummaryrefslogtreecommitdiffstats
path: root/documentation
diff options
context:
space:
mode:
authorSun Zhe <31067185+ZheSun88@users.noreply.github.com>2018-10-09 16:27:16 +0300
committerGitHub <noreply@github.com>2018-10-09 16:27:16 +0300
commit16764a20786326b891b4d2fc80512a61a7c53d3e (patch)
tree8b4870be9d361721a7d625de816b7f0d675ef899 /documentation
parent2c59809dd2ab8a607b032a5278ca63330988ef0d (diff)
downloadvaadin-framework-16764a20786326b891b4d2fc80512a61a7c53d3e.tar.gz
vaadin-framework-16764a20786326b891b4d2fc80512a61a7c53d3e.zip
Correct typo in tutorial (#11230)
Diffstat (limited to 'documentation')
-rw-r--r--documentation/tutorial.adoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/tutorial.adoc b/documentation/tutorial.adoc
index c403d54a4a..9d8b8fb50a 100644
--- a/documentation/tutorial.adoc
+++ b/documentation/tutorial.adoc
@@ -900,7 +900,7 @@ delete.addClickListener(e -> this.delete());
----
TIP: For a truly re-usable form component in a real life project, you'd want to
-introduce an interface to replace the myUI field or, event better, use an event
+introduce an interface to replace the myUI field or, even better, use an event
system like https://vaadin.com/wiki/-/wiki/main/Events+and+contexts[CDI events]
to completely decouple the components. We'll leave that out of this tutorial for
simplicity.