You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by ah...@apache.org on 2020/09/10 11:53:35 UTC

[isis] branch master updated: ISIS-2426: model4adoc: add support for simple paragraphs (2)

This is an automated email from the ASF dual-hosted git repository.

ahuber pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/isis.git


The following commit(s) were added to refs/heads/master by this push:
     new 02284ed  ISIS-2426: model4adoc: add support for simple paragraphs (2)
02284ed is described below

commit 02284ed0e6b3e5efbf6a16d3b88e0999fe35f02b
Author: Andi Huber <ah...@apache.org>
AuthorDate: Thu Sep 10 13:53:19 2020 +0200

    ISIS-2426: model4adoc: add support for simple paragraphs (2)
---
 tooling/model4adoc/README.adoc | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tooling/model4adoc/README.adoc b/tooling/model4adoc/README.adoc
index 5805dea..038720c 100644
--- a/tooling/model4adoc/README.adoc
+++ b/tooling/model4adoc/README.adoc
@@ -61,7 +61,7 @@ cell(table, headRow, "Sirname");
 
 for(Employee employee : employees) {
     
-    val row = row(table);
+    Row row = row(table);
     cell(table, row, "" + employee.getId());
     cell(table, row, employee.getFirstName());
     cell(table, row, employee.getSirName());