mirror of
https://github.com/OpenAPITools/openapi-generator.git
synced 2025-12-05 13:36:10 +00:00
Fix thousands of spelling typos (#10272)
This commit is contained in:
@@ -145,7 +145,7 @@ Class | Method | HTTP request | Description
|
||||
*FakeApi* | [**testGroupParameters**](docs/FakeApi.md#testGroupParameters) | **DELETE** /fake | Fake endpoint to test group parameters (optional)
|
||||
*FakeApi* | [**testInlineAdditionalProperties**](docs/FakeApi.md#testInlineAdditionalProperties) | **POST** /fake/inline-additionalProperties | test inline additionalProperties
|
||||
*FakeApi* | [**testJsonFormData**](docs/FakeApi.md#testJsonFormData) | **GET** /fake/jsonFormData | test json serialization of form data
|
||||
*FakeApi* | [**testQueryParameterCollectionFormat**](docs/FakeApi.md#testQueryParameterCollectionFormat) | **PUT** /fake/test-query-paramters |
|
||||
*FakeApi* | [**testQueryParameterCollectionFormat**](docs/FakeApi.md#testQueryParameterCollectionFormat) | **PUT** /fake/test-query-parameters |
|
||||
*FakeClassnameTags123Api* | [**testClassname**](docs/FakeClassnameTags123Api.md#testClassname) | **PATCH** /fake_classname_test | To test class name in snake case
|
||||
*PetApi* | [**addPet**](docs/PetApi.md#addPet) | **POST** /pet | Add a new pet to the store
|
||||
*PetApi* | [**deletePet**](docs/PetApi.md#deletePet) | **DELETE** /pet/{petId} | Deletes a pet
|
||||
|
||||
@@ -1162,7 +1162,7 @@ paths:
|
||||
x-codegen-request-body-name: body
|
||||
x-contentType: application/json
|
||||
x-accepts: application/json
|
||||
/fake/test-query-paramters:
|
||||
/fake/test-query-parameters:
|
||||
put:
|
||||
description: To test the collection format in query parameters
|
||||
operationId: testQueryParameterCollectionFormat
|
||||
|
||||
@@ -17,7 +17,7 @@ Method | HTTP request | Description
|
||||
[**testGroupParameters**](FakeApi.md#testGroupParameters) | **DELETE** /fake | Fake endpoint to test group parameters (optional)
|
||||
[**testInlineAdditionalProperties**](FakeApi.md#testInlineAdditionalProperties) | **POST** /fake/inline-additionalProperties | test inline additionalProperties
|
||||
[**testJsonFormData**](FakeApi.md#testJsonFormData) | **GET** /fake/jsonFormData | test json serialization of form data
|
||||
[**testQueryParameterCollectionFormat**](FakeApi.md#testQueryParameterCollectionFormat) | **PUT** /fake/test-query-paramters |
|
||||
[**testQueryParameterCollectionFormat**](FakeApi.md#testQueryParameterCollectionFormat) | **PUT** /fake/test-query-parameters |
|
||||
|
||||
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
#!/bin/sh
|
||||
# ref: https://help.github.com/articles/adding-an-existing-project-to-github-using-the-command-line/
|
||||
#
|
||||
# Usage example: /bin/sh ./git_push.sh wing328 openapi-pestore-perl "minor update" "gitlab.com"
|
||||
# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update" "gitlab.com"
|
||||
|
||||
git_user_id=$1
|
||||
git_repo_id=$2
|
||||
|
||||
@@ -524,7 +524,7 @@ public class ApiClient extends JavaTimeFormatter {
|
||||
/**
|
||||
* The path of temporary folder used to store downloaded files from endpoints
|
||||
* with file response. The default value is <code>null</code>, i.e. using
|
||||
* the system's default tempopary folder.
|
||||
* the system's default temporary folder.
|
||||
*
|
||||
* @return Temp folder path
|
||||
*/
|
||||
@@ -1180,7 +1180,7 @@ public class ApiClient extends JavaTimeFormatter {
|
||||
/**
|
||||
* Customize the client builder.
|
||||
*
|
||||
* This method can be overriden to customize the API client. For example, this can be used to:
|
||||
* This method can be overridden to customize the API client. For example, this can be used to:
|
||||
* 1. Set the hostname verifier to be used by the client to verify the endpoint's hostname
|
||||
* against its identification information.
|
||||
* 2. Set the client-side key store.
|
||||
|
||||
@@ -12,7 +12,7 @@ public class ServerConfiguration {
|
||||
|
||||
/**
|
||||
* @param URL A URL to the target host.
|
||||
* @param description A describtion of the host designated by the URL.
|
||||
* @param description A description of the host designated by the URL.
|
||||
* @param variables A map between a variable name and its value. The value is used for substitution in the server's URL template.
|
||||
*/
|
||||
public ServerConfiguration(String URL, String description, Map<String, ServerVariable> variables) {
|
||||
|
||||
@@ -28,7 +28,7 @@ public class AnotherFakeApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the API cilent
|
||||
* Get the API client
|
||||
*
|
||||
* @return API client
|
||||
*/
|
||||
@@ -37,7 +37,7 @@ public class AnotherFakeApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the API cilent
|
||||
* Set the API client
|
||||
*
|
||||
* @param apiClient an instance of API client
|
||||
*/
|
||||
|
||||
@@ -36,7 +36,7 @@ public class FakeApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the API cilent
|
||||
* Get the API client
|
||||
*
|
||||
* @return API client
|
||||
*/
|
||||
@@ -45,7 +45,7 @@ public class FakeApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the API cilent
|
||||
* Set the API client
|
||||
*
|
||||
* @param apiClient an instance of API client
|
||||
*/
|
||||
@@ -1164,7 +1164,7 @@ if (param2 != null)
|
||||
}
|
||||
|
||||
// create path and map variables
|
||||
String localVarPath = "/fake/test-query-paramters";
|
||||
String localVarPath = "/fake/test-query-parameters";
|
||||
|
||||
// query params
|
||||
List<Pair> localVarQueryParams = new ArrayList<Pair>();
|
||||
|
||||
@@ -28,7 +28,7 @@ public class FakeClassnameTags123Api {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the API cilent
|
||||
* Get the API client
|
||||
*
|
||||
* @return API client
|
||||
*/
|
||||
@@ -37,7 +37,7 @@ public class FakeClassnameTags123Api {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the API cilent
|
||||
* Set the API client
|
||||
*
|
||||
* @param apiClient an instance of API client
|
||||
*/
|
||||
|
||||
@@ -31,7 +31,7 @@ public class PetApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the API cilent
|
||||
* Get the API client
|
||||
*
|
||||
* @return API client
|
||||
*/
|
||||
@@ -40,7 +40,7 @@ public class PetApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the API cilent
|
||||
* Set the API client
|
||||
*
|
||||
* @param apiClient an instance of API client
|
||||
*/
|
||||
|
||||
@@ -28,7 +28,7 @@ public class StoreApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the API cilent
|
||||
* Get the API client
|
||||
*
|
||||
* @return API client
|
||||
*/
|
||||
@@ -37,7 +37,7 @@ public class StoreApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the API cilent
|
||||
* Set the API client
|
||||
*
|
||||
* @param apiClient an instance of API client
|
||||
*/
|
||||
|
||||
@@ -28,7 +28,7 @@ public class UserApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Get the API cilent
|
||||
* Get the API client
|
||||
*
|
||||
* @return API client
|
||||
*/
|
||||
@@ -37,7 +37,7 @@ public class UserApi {
|
||||
}
|
||||
|
||||
/**
|
||||
* Set the API cilent
|
||||
* Set the API client
|
||||
*
|
||||
* @param apiClient an instance of API client
|
||||
*/
|
||||
|
||||
@@ -132,7 +132,7 @@ public abstract class AbstractOpenApiSchema {
|
||||
}
|
||||
|
||||
/**
|
||||
* Is nullalble
|
||||
* Is nullable
|
||||
*
|
||||
* @return true if it's nullable
|
||||
*/
|
||||
|
||||
Reference in New Issue
Block a user