summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBoppleton Industries <bots@boppleton.com>2018-04-04 15:13:02 -0600
committerTeemu Suo-Anttila <tsuoanttila@users.noreply.github.com>2018-04-05 00:13:02 +0300
commitfbebef3e7b8554d27ad930b6339ee69a3bee5313 (patch)
tree06cc90d586ad8ba7bccabcf5b5c566dc608fc061
parentc797b8cbba82bb5e43031692e39e092fbe9bb7cf (diff)
downloadvaadin-framework-fbebef3e7b8554d27ad930b6339ee69a3bee5313.tar.gz
vaadin-framework-fbebef3e7b8554d27ad930b6339ee69a3bee5313.zip
Fix HtmlRenderer code example in documentation (#10790)8.4.0.alpha2
-rw-r--r--documentation/components/components-grid.asciidoc2
1 files changed, 1 insertions, 1 deletions
diff --git a/documentation/components/components-grid.asciidoc b/documentation/components/components-grid.asciidoc
index 898935b4c1..e1e3e716e4 100644
--- a/documentation/components/components-grid.asciidoc
+++ b/documentation/components/components-grid.asciidoc
@@ -504,7 +504,7 @@ Set the renderer in the [classname]#Grid.Column# object:
+
[source, java]
----
-Column<Person, String> htmlColumn grid.addColumn(person ->
+Column<Person, String> htmlColumn = grid.addColumn(person ->
"<a href='" + person.getDetailsUrl() + "' target='_top'>info</a>",
new HtmlRenderer());
----