You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by rs...@apache.org on 2018/10/11 14:24:06 UTC

[openwebbeans-meecrowave-examples] branch master updated: fix documentation typos

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

rsandtner pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/openwebbeans-meecrowave-examples.git


The following commit(s) were added to refs/heads/master by this push:
     new 412f9df  fix documentation typos
412f9df is described below

commit 412f9dfbcec3a211b209ed75f100e7a447937e56
Author: Alexander Falb <el...@apache.org>
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.