Skip to content

Commit 4416176

Browse files
committed
fixing typo in documentation.
1 parent 56e3e6b commit 4416176

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/main/java/fr/fxjavadevblog/aid/api/videogame/VideoGameResource.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -89,8 +89,8 @@ public Response getMetaData()
8989
}
9090

9191
@GET
92-
@Operation(summary = "Video game resources with paging, sorting and filtering.)",
93-
description = "Get all video games on Atari ST. Content negociation can produce application/json and application/yaml")
92+
@Operation(summary = "Video game resources with paging, sorting and filtering.",
93+
description = "Get all video games on Atari ST. Content negotiation can produce application/json and application/yaml")
9494
@Timed(name = "videogames-find-all", absolute = true, description = "A measure of how long it takes to fetch all video games.", unit = MetricUnits.MILLISECONDS)
9595
@Parameter(name="name", description = "holds filtering expression : like, eq", schema = @Schema(type = SchemaType.STRING) )
9696
@Parameter(in = ParameterIn.QUERY, name="genre", description = "holds filtering expression : eq", schema = @Schema(type = SchemaType.STRING))
@@ -136,7 +136,7 @@ public Response findAll(@BeanParam
136136

137137
@GET
138138
@Path("/{id}")
139-
@Operation(summary = "Get information about a particular video game.", description = "Retrieve all data of a video game. *Content Negociation* can produce JSON or YAML")
139+
@Operation(summary = "Get information about a particular video game.", description = "Retrieve all data of a video game. *Content Negotiation* can produce JSON or YAML")
140140
@APIResponse(responseCode = "200", description = "The video game has been found.", content = @Content(schema = @Schema(implementation = VideoGame.class)))
141141
@APIResponse(responseCode = "404", description = "The video game is not found. The provided game ID is incorrect.", ref = ApplicationConfig.RESPONSE_API_ERROR)
142142
public Response get(@PathParam(value = "id")

0 commit comments

Comments
 (0)