diff options
author | Sun Zhe <31067185+ZheSun88@users.noreply.github.com> | 2018-10-09 16:27:16 +0300 |
---|---|---|
committer | Sun Zhe <31067185+ZheSun88@users.noreply.github.com> | 2018-10-17 12:47:34 +0300 |
commit | 9f2bf7fa19d6d487eb1049e49d5ee052ab5f479e (patch) | |
tree | 6fb79abc54c207eda73b45e5a4cf70f1b6b8a544 | |
parent | fd1e223a887539b7c3391c2f50c69ab026fd5426 (diff) | |
download | vaadin-framework-9f2bf7fa19d6d487eb1049e49d5ee052ab5f479e.tar.gz vaadin-framework-9f2bf7fa19d6d487eb1049e49d5ee052ab5f479e.zip |
Correct typo in tutorial (#11230)
-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 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. |