summaryrefslogtreecommitdiffstats
path: root/documentation/articles
diff options
context:
space:
mode:
authorOskar Bilén <oskar.bilen@brpsystems.se>2017-10-20 10:55:11 +0200
committerPéter Török <31210544+torok-peter@users.noreply.github.com>2017-10-20 11:55:11 +0300
commitf706837fbfdafef24839184c487e975afaa7cfc3 (patch)
treecd36a36c00d2790fe7ff28a881f8864e65917a8d /documentation/articles
parent3929d0ac6f8e3d7370412d1d181db1b2361d13e3 (diff)
downloadvaadin-framework-f706837fbfdafef24839184c487e975afaa7cfc3.tar.gz
vaadin-framework-f706837fbfdafef24839184c487e975afaa7cfc3.zip
Typo in code (#10218)
Remove "java" from code example
Diffstat (limited to 'documentation/articles')
-rw-r--r--documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc b/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc
index ad2c3b7a7b..e7685d3f6d 100644
--- a/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc
+++ b/documentation/articles/FindingTheCurrentUIAndPageAndVaadinSession.asciidoc
@@ -52,7 +52,7 @@ resize listener can be added like this:
[source,java]
....
-javaPage.getCurrent().addBrowserWindowResizeListener(
+Page.getCurrent().addBrowserWindowResizeListener(
new Page.BrowserWindowResizeListener() {
@Override
public void browserWindowResized(BrowserWindowResizeEvent event) {