diff options
author | Mehdi Javan <32511762+mehdi-vaadin@users.noreply.github.com> | 2019-02-27 09:17:21 +0200 |
---|---|---|
committer | Sun Zhe <31067185+ZheSun88@users.noreply.github.com> | 2019-02-27 09:17:21 +0200 |
commit | 1e7cd3ef157396bc92ef47445e962b3ff68ceda3 (patch) | |
tree | 2d757ea0f2b06be2355c4f7274ff4d3603c84fd9 /documentation | |
parent | f1d5ddcf597caccfc2cc77f66f116754cf6105a5 (diff) | |
download | vaadin-framework-1e7cd3ef157396bc92ef47445e962b3ff68ceda3.tar.gz vaadin-framework-1e7cd3ef157396bc92ef47445e962b3ff68ceda3.zip |
Fix typo (#11466)
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/tutorial.adoc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/tutorial.adoc b/documentation/tutorial.adoc index f84a4ddca5..6f31a127e1 100644 --- a/documentation/tutorial.adoc +++ b/documentation/tutorial.adoc @@ -870,7 +870,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. |