Skip to content

Commit

Permalink
Updates to README
Browse files Browse the repository at this point in the history
  • Loading branch information
noboomu committed May 10, 2017
1 parent a9a81e7 commit 5e359ef
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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<World> plaintext(Integer id, Integer randomNumber )
@ApiOperation(value = "Return a world JSON object", httpMethod = "GET", response=World.class )
public io.sinistral.proteus.server.ServerResponse<World> getWorld(Integer id, Integer randomNumber )
{
return io.sinistral.proteus.server.ServerResponse.response().entity(new World(id,randomNumber));
}
Expand Down

0 comments on commit 5e359ef

Please sign in to comment.