diff --git a/docs/src/main/asciidoc/getting-started.adoc b/docs/src/main/asciidoc/getting-started.adoc index d15d72e023133..aaac5a62fc529 100644 --- a/docs/src/main/asciidoc/getting-started.adoc +++ b/docs/src/main/asciidoc/getting-started.adoc @@ -277,7 +277,7 @@ public class GreetingResource { @GET @Produces(MediaType.TEXT_PLAIN) public String hello() { - return "hello"; + return "Hello from RESTEasy Reactive"; } } ---- @@ -381,7 +381,7 @@ public class GreetingResourceTest { .when().get("/hello") .then() .statusCode(200) // <2> - .body(is("hello")); + .body(is("Hello from RESTEasy Reactive")); } @Test