From 01882e16e42d57522aa4ee85512be362d74cb10d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Aur=C3=A9lien=20Pupier?= Date: Mon, 14 May 2018 15:11:54 +0200 Subject: [PATCH] Fix layout of the readme for bullet points MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Aurélien Pupier --- README.adoc | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.adoc b/README.adoc index 08fcf0c..88e307b 100644 --- a/README.adoc +++ b/README.adoc @@ -7,8 +7,9 @@ The REST API Level 0 mission shows how to map business operations to a remote pr Creating an HTTP endpoint using REST and its underlying principles to define your API lets you quickly prototype and design the API flexibly. This booster introduces the mechanics of interacting with a remote (exposed by Apache Camel) service using the HTTP protocol. It allows you to: -. Execute an HTTP GET request on `api/greetings/{name}`` endpoint; using the url parameter `{name}` and producing a response in JSON format with a payload of Hello, $name! with $name replaced by the value of the url parameter used into the request. -. Browse the api's Swagger page. + +* Execute an HTTP GET request on `api/greetings/{name}`` endpoint; using the url parameter `{name}` and producing a response in JSON format with a payload of Hello, $name! with $name replaced by the value of the url parameter used into the request. +* Browse the api's Swagger page. == Deployment options