Skip to content

Commit

Permalink
some rollback 2
Browse files Browse the repository at this point in the history
  • Loading branch information
alfet81 committed Nov 13, 2024
1 parent af3b006 commit c31cee0
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -307,7 +307,7 @@ paths:
required: true
responses:
"200":
description: Created
description: successful operation
content:
application/xml:
schema:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ OrderDto getOrderById(
*
*
* @param orderDto order placed for purchasing the pet (required)
* @return Created (status code 200)
* @return successful operation (status code 200)
* or Invalid Order (status code 400)
*/
@ResponseStatus(HttpStatus.OK)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ Mono<Order> getOrderById(
*
*
* @param order order placed for purchasing the pet (required)
* @return Created (status code 200)
* @return successful operation (status code 200)
* or Invalid Order (status code 400)
*/
@ResponseStatus(HttpStatus.OK)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ Mono<ResponseEntity<Order>> getOrderById(
*
*
* @param order order placed for purchasing the pet (required)
* @return Created (status code 200)
* @return successful operation (status code 200)
* or Invalid Order (status code 400)
*/
@HttpExchange(
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ ResponseEntity<OrderDto> getOrderById(
*
*
* @param orderDto order placed for purchasing the pet (required)
* @return Created (status code 200)
* @return successful operation (status code 200)
* or Invalid Order (status code 400)
*/
@HttpExchange(
Expand Down

0 comments on commit c31cee0

Please sign in to comment.