This is an automated email from the ASF dual-hosted git repository. struberg pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/openwebbeans-meecrowave-examples.git
commit 412f9dfbcec3a211b209ed75f100e7a447937e56 Author: Alexander Falb <[email protected]> AuthorDate: Thu Oct 11 13:32:12 2018 +0200 fix documentation typos --- README.adoc | 2 +- rest-trivial/README.adoc | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.adoc b/README.adoc index 8895239..ada3e57 100644 --- a/README.adoc +++ b/README.adoc @@ -17,7 +17,7 @@ Apache Meecrowave is a 9 MByte small embeddable Java Application Server based on Here's what it provides: -0. A pom.xml with the dependencies for this sample and meecrowave-maven-plugin setup so you can launch `mvn package meecrowave-run`. +0. A pom.xml with the dependencies for this sample and meecrowave-maven-plugin setup so you can launch `mvn package meecrowave:run`. 1. A sample JAX-RS application: in src/main/java/com/superbiz/sample/jaxrs 2. A test using JAX-RS client API and the meecrowave mono rule (useful when you run multiple tests) in src/test/java/com/superbiz/sample/jaxrs 3. in src/main/java/com/superbiz/configuration/Defaults some enrichment of the meecrowave Cli options for the application. diff --git a/rest-trivial/README.adoc b/rest-trivial/README.adoc index 7f9b567..1200dc3 100644 --- a/rest-trivial/README.adoc +++ b/rest-trivial/README.adoc @@ -5,7 +5,7 @@ This example shows probably the smallest JavaEE REST Service. It is the REST version of the famous 'Hello World' program. It contains just a link:src/main/java/com/superbiz/jaxrs/HelloEndpoint.java[Hello Resource]. -The important parst of this class are the @Path(`"hello")` and the `@GET' annotated method. +The important parts of this class are the `@Path("hello")` and the `@GET` annotated method. Note that the Resource is a CDI bean annotated with `@ApplicationScoped`. -Thus only one instance exists. \ No newline at end of file +Thus only one instance exists.
