Skip to content

Commit

Permalink
Fixed greeting in getting started guide
Browse files Browse the repository at this point in the history
  • Loading branch information
mskacelik committed Feb 3, 2023
1 parent 5205645 commit df09f55
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/src/main/asciidoc/getting-started.adoc
Original file line number Diff line number Diff line change
Expand Up @@ -277,7 +277,7 @@ public class GreetingResource {
@GET
@Produces(MediaType.TEXT_PLAIN)
public String hello() {
return "hello";
return "Hello from RESTEasy Reactive";
}
}
----
Expand Down Expand Up @@ -381,7 +381,7 @@ public class GreetingResourceTest {
.when().get("/hello")
.then()
.statusCode(200) // <2>
.body(is("hello"));
.body(is("Hello from RESTEasy Reactive"));
}
@Test
Expand Down

0 comments on commit df09f55

Please sign in to comment.