From f8530107930525bf5355848b83864b7b7dcfe2a1 Mon Sep 17 00:00:00 2001 From: "Brian M. Long" Date: Fri, 14 Jun 2024 16:36:25 -0400 Subject: [PATCH] fix round documentation --- .../com/poststats/golf/rs/api/EventRoundApi.java | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/src/main/java/com/poststats/golf/rs/api/EventRoundApi.java b/src/main/java/com/poststats/golf/rs/api/EventRoundApi.java index 14cd618..ab9dd0c 100644 --- a/src/main/java/com/poststats/golf/rs/api/EventRoundApi.java +++ b/src/main/java/com/poststats/golf/rs/api/EventRoundApi.java @@ -32,8 +32,8 @@ public interface EventRoundApi { @Path("/rounds/next") @Produces(Constants.V1_JSON) @Operation( - summary = "Retrieves limited meta-data about an event.", - description = "Retreives name, location, dates, and other direct meta-data about the specified event." + summary = "Retrieves limited meta-data about the next round in the specified event.", + description = "Retreives name, location, dates, and other direct meta-data about the upcoming round in the specified event." ) @ApiResponses({ @ApiResponse(responseCode = "200", description = "Success"), @@ -49,8 +49,8 @@ public interface EventRoundApi { @Path("/round/{eroundId:[0-9]+}") @Produces(Constants.V1_JSON) @Operation( - summary = "Retrieves limited meta-data about an event.", - description = "Retreives name, location, dates, and other direct meta-data about the specified event." + summary = "Retrieves limited meta-data about the specified event round.", + description = "Retreives name, location, dates, and other direct meta-data about the specified event round." ) @ApiResponses({ @ApiResponse(responseCode = "200", description = "Success"), @@ -69,8 +69,8 @@ public interface EventRoundApi { @Path("/rounds") @Produces(Constants.V1_JSON) @Operation( - summary = "Retrieves limited meta-data about an event.", - description = "Retreives name, location, dates, and other direct meta-data about the specified event." + summary = "Retrieves limited meta-data about all the rounds in the specified event.", + description = "Retreives name, location, dates, and other direct meta-data about all the rounds in the specified event." ) @ApiResponses({ @ApiResponse(responseCode = "200", description = "Success"),