You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@isis.apache.org by da...@apache.org on 2021/03/20 15:32:47 UTC

[isis] 01/03: ISIS-2444: minor doc fixes

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

danhaywood pushed a commit to branch ISIS-2444
in repository https://gitbox.apache.org/repos/asf/isis.git

commit 990df196dbdd0cbfa26f8a01471495465f418cca
Author: danhaywood <da...@haywood-associates.co.uk>
AuthorDate: Sat Mar 20 07:28:08 2021 +0000

    ISIS-2444: minor doc fixes
---
 .../pages/what-is-apache-isis/isis-in-pictures.adoc    |  2 +-
 .../ROOT/pages/what-is-apache-isis/screencasts.adoc    |  2 +-
 starters/adoc/modules/starters/pages/helloworld.adoc   | 18 +++---------------
 3 files changed, 5 insertions(+), 17 deletions(-)

diff --git a/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/isis-in-pictures.adoc b/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/isis-in-pictures.adoc
index c4a89a1..da77857 100644
--- a/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/isis-in-pictures.adoc
+++ b/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/isis-in-pictures.adoc
@@ -8,7 +8,7 @@ On this page we want to show you what an Apache Isis application looks like, run
 The screenshots below are taken from a "Todo" application.
 
 NOTE: these screenshots are based on an app running against v1.13  and v1.10 of the framework.
-There have since been a number of UI improvements since these releases.
+There have been a number of UI improvements since these releases.
 
 == Basics
 
diff --git a/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/screencasts.adoc b/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/screencasts.adoc
index 081a850..0da375d 100644
--- a/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/screencasts.adoc
+++ b/antora/components/docs/modules/ROOT/pages/what-is-apache-isis/screencasts.adoc
@@ -22,7 +22,7 @@ The table below indicates which screencasts are in which playlist.
 [NOTE]
 ====
 These screencasts were recorded using v1.12.x.
-There have since been a number of UI improvements since these releases.
+There have been a number of UI improvements since these releases.
 ====
 
 
diff --git a/starters/adoc/modules/starters/pages/helloworld.adoc b/starters/adoc/modules/starters/pages/helloworld.adoc
index f8334f5..fc3d8fe 100644
--- a/starters/adoc/modules/starters/pages/helloworld.adoc
+++ b/starters/adoc/modules/starters/pages/helloworld.adoc
@@ -470,23 +470,11 @@ JQuery is available by default.
 Note that there is no `src/main/webapp/` or `WEB-INF/web.xml` - the servlets and filters are configured by Apache Isis automatically.
 
 
-=== src/test/java
+=== No src/test/java
 
-Under `src/test/java` we have:
+There are no tests in helloworld.
+You will find tests in the xref:docs:starters:simpleapp.adoc[SimpleApp starter app].
 
-[source]
-----
-src/test/java/
-  domainapp/
-    modules/
-      hello/
-        dom/
-          hwo/                          <!--1-->
-            HelloWorldObject_Test.java
-            HelloWorldObjects_Test.java
-----
-<1> These are very simple unit tests of `HelloWorldObject` and `HelloWorldObjects`, with the package structure the same as in `src/main/java`.
-They are written in JUnit 5 and use Mockito as the mocking library.
 
 === pom.xml