You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/main/java/fr/fxjavadevblog/aid/api/videogame/VideoGameResource.java
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -89,8 +89,8 @@ public Response getMetaData()
89
89
}
90
90
91
91
@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")
94
94
@Timed(name = "videogames-find-all", absolute = true, description = "A measure of how long it takes to fetch all video games.", unit = MetricUnits.MILLISECONDS)
@@ -136,7 +136,7 @@ public Response findAll(@BeanParam
136
136
137
137
@GET
138
138
@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")
140
140
@APIResponse(responseCode = "200", description = "The video game has been found.", content = @Content(schema = @Schema(implementation = VideoGame.class)))
141
141
@APIResponse(responseCode = "404", description = "The video game is not found. The provided game ID is incorrect.", ref = ApplicationConfig.RESPONSE_API_ERROR)
0 commit comments