Fix thousands of spelling typos (#10272)

This commit is contained in:
Nathan Baulch
2021-08-29 00:58:24 +10:00
committed by GitHub
parent 2d239271e5
commit 5d68bd6a03
1132 changed files with 2060 additions and 2060 deletions

View File

@@ -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);

View File

@@ -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)

View File

@@ -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