You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@openwebbeans.apache.org by st...@apache.org on 2019/03/14 09:56:26 UTC

[openwebbeans-meecrowave-examples] 11/28: more github render experiments

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 55c4f5c232f834702fc82b4249a69a9076f2aebd
Author: Mark Struberg <st...@apache.org>
AuthorDate: Tue Jul 17 21:47:21 2018 +0200

    more github render experiments
---
 rest-trivial/{rest-trivial.adoc => README.adoc} | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/rest-trivial/rest-trivial.adoc b/rest-trivial/README.adoc
similarity index 73%
rename from rest-trivial/rest-trivial.adoc
rename to rest-trivial/README.adoc
index b895781..7f9b567 100644
--- a/rest-trivial/rest-trivial.adoc
+++ b/rest-trivial/README.adoc
@@ -4,7 +4,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 <<src/main/java/com/superbiz/jaxrs/HelloEndpoint.java,Hello Resource>>.
+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.
 
 Note that the Resource is a CDI bean annotated with `@ApplicationScoped`.