forked from loafle/openapi-generator-original
Fix thousands of spelling typos (#10272)
This commit is contained in:
@@ -330,7 +330,7 @@ public interface FakeApi {
|
||||
|
||||
|
||||
/**
|
||||
* PUT /fake/test-query-paramters
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
*
|
||||
* @param pipe (required)
|
||||
@@ -345,7 +345,7 @@ public interface FakeApi {
|
||||
@ApiResponse(code = 200, message = "Success") })
|
||||
@RequestMapping(
|
||||
method = RequestMethod.PUT,
|
||||
value = "/fake/test-query-paramters"
|
||||
value = "/fake/test-query-parameters"
|
||||
)
|
||||
default Mono<ResponseEntity<Void>> testQueryParameterCollectionFormat(@NotNull @ApiParam(value = "", required = true) @Valid @RequestParam(value = "pipe", required = true) List<String> pipe,@NotNull @ApiParam(value = "", required = true) @Valid @RequestParam(value = "ioutil", required = true) List<String> ioutil,@NotNull @ApiParam(value = "", required = true) @Valid @RequestParam(value = "http", required = true) List<String> http,@NotNull @ApiParam(value = "", required = true) @Valid @RequestParam(value = "url", required = true) List<String> url,@NotNull @ApiParam(value = "", required = true) @Valid @RequestParam(value = "context", required = true) List<String> context, @springfox.documentation.annotations.ApiIgnore final ServerWebExchange exchange) {
|
||||
return getDelegate().testQueryParameterCollectionFormat(pipe, ioutil, http, url, context, exchange);
|
||||
|
||||
@@ -312,7 +312,7 @@ public interface FakeApiDelegate {
|
||||
}
|
||||
|
||||
/**
|
||||
* PUT /fake/test-query-paramters
|
||||
* PUT /fake/test-query-parameters
|
||||
* To test the collection format in query parameters
|
||||
*
|
||||
* @param pipe (required)
|
||||
|
||||
@@ -1232,7 +1232,7 @@ paths:
|
||||
x-accepts: application/json
|
||||
x-tags:
|
||||
- tag: fake
|
||||
/fake/test-query-paramters:
|
||||
/fake/test-query-parameters:
|
||||
put:
|
||||
description: To test the collection format in query parameters
|
||||
operationId: testQueryParameterCollectionFormat
|
||||
|
||||
Reference in New Issue
Block a user