From 5e359ef432ca0aea606677bb3e32730772683e34 Mon Sep 17 00:00:00 2001 From: joshua bauer Date: Wed, 10 May 2017 08:48:36 -0700 Subject: [PATCH] Updates to README --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 03e68e8..2642838 100644 --- a/README.md +++ b/README.md @@ -90,8 +90,8 @@ A great deal of inspiration came from working with the following excellent proje @GET @Path("/world") @Produces((MediaType.APPLICATION_JSON)) - @ApiOperation(value = "Return a random world instance", httpMethod = "GET", response=World.class ) - public io.sinistral.proteus.server.ServerResponse plaintext(Integer id, Integer randomNumber ) + @ApiOperation(value = "Return a world JSON object", httpMethod = "GET", response=World.class ) + public io.sinistral.proteus.server.ServerResponse getWorld(Integer id, Integer randomNumber ) { return io.sinistral.proteus.server.ServerResponse.response().entity(new World(id,randomNumber)); }