forked from loafle/openapi-generator-original
Fix another batch of spelling typos (#13915)
* Fix typos * Remove repeated words * Minor grammar fixes
This commit is contained in:
@@ -377,14 +377,14 @@ public interface FakeApi {
|
||||
* @param stringGroup String in group parameters (optional)
|
||||
* @param booleanGroup Boolean in group parameters (optional)
|
||||
* @param int64Group Integer in group parameters (optional)
|
||||
* @return Someting wrong (status code 400)
|
||||
* @return Something wrong (status code 400)
|
||||
*/
|
||||
@Operation(
|
||||
operationId = "testGroupParameters",
|
||||
summary = "Fake endpoint to test group parameters (optional)",
|
||||
tags = { "fake" },
|
||||
responses = {
|
||||
@ApiResponse(responseCode = "400", description = "Someting wrong")
|
||||
@ApiResponse(responseCode = "400", description = "Something wrong")
|
||||
}
|
||||
)
|
||||
@RequestMapping(
|
||||
|
||||
@@ -234,7 +234,7 @@ public interface FakeApiDelegate {
|
||||
* @param stringGroup String in group parameters (optional)
|
||||
* @param booleanGroup Boolean in group parameters (optional)
|
||||
* @param int64Group Integer in group parameters (optional)
|
||||
* @return Someting wrong (status code 400)
|
||||
* @return Something wrong (status code 400)
|
||||
* @see FakeApi#testGroupParameters
|
||||
*/
|
||||
default ResponseEntity<Void> testGroupParameters(Integer requiredStringGroup,
|
||||
|
||||
@@ -96,7 +96,7 @@ public interface StoreApi {
|
||||
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
*
|
||||
* @param orderId ID of pet that needs to be fetched (required)
|
||||
* @return successful operation (status code 200)
|
||||
|
||||
@@ -52,7 +52,7 @@ public interface StoreApiDelegate {
|
||||
|
||||
/**
|
||||
* GET /store/order/{order_id} : Find purchase order by ID
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
|
||||
* For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
|
||||
*
|
||||
* @param orderId ID of pet that needs to be fetched (required)
|
||||
* @return successful operation (status code 200)
|
||||
|
||||
@@ -392,7 +392,7 @@ paths:
|
||||
- tag: store
|
||||
get:
|
||||
description: For valid response try integer IDs with value <= 5 or > 10. Other
|
||||
values will generated exceptions
|
||||
values will generate exceptions
|
||||
operationId: getOrderById
|
||||
parameters:
|
||||
- description: ID of pet that needs to be fetched
|
||||
@@ -714,7 +714,7 @@ paths:
|
||||
responses:
|
||||
"400":
|
||||
content: {}
|
||||
description: Someting wrong
|
||||
description: Something wrong
|
||||
summary: Fake endpoint to test group parameters (optional)
|
||||
tags:
|
||||
- fake
|
||||
|
||||
Reference in New Issue
Block a user