model : models) {
+ String enumImportPath = (String) model.get("importPath");
if (enumImportPath != null && enumImportPath.equals(importPath)) {
return true;
}
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/WsdlSchemaCodegen.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/WsdlSchemaCodegen.java
index 2f66b96468f..2dc1e6764a0 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/WsdlSchemaCodegen.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/languages/WsdlSchemaCodegen.java
@@ -66,7 +66,7 @@ public class WsdlSchemaCodegen extends DefaultCodegen implements CodegenConfig {
cliOptions.add(new CliOption("contentTypeVersion",
"generate WSDL with parameters/responses of the specified content-type"));
cliOptions.add(new CliOption("useSpecifiedOperationId",
- "wheather to use autogenerated operationId's (default) "
+ "whether to use autogenerated operationId's (default) "
+ "or those specified in openapi spec"));
additionalProperties.put("hostname", "localhost");
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/OptionalParameterLambda.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/OptionalParameterLambda.java
index 3494628043a..2a152e9dbb7 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/OptionalParameterLambda.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/OptionalParameterLambda.java
@@ -28,7 +28,7 @@ import java.io.Writer;
import static org.openapitools.codegen.utils.StringUtils.camelize;
/**
- * Appends trailing ? to a text fragement if not already present
+ * Appends trailing ? to a text fragment if not already present
*
* Register:
*
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/RequiredParameterLambda.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/RequiredParameterLambda.java
index 54b5fad703b..e42a373b042 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/RequiredParameterLambda.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/templating/mustache/RequiredParameterLambda.java
@@ -27,7 +27,7 @@ import java.io.Writer;
import static org.openapitools.codegen.utils.StringUtils.camelize;
/**
- * Strips trailing ? from a text fragement
+ * Strips trailing ? from a text fragment
*
* Register:
*
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/utils/ModelUtils.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/utils/ModelUtils.java
index fbabd3bd5ad..107045d3958 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/utils/ModelUtils.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/utils/ModelUtils.java
@@ -426,7 +426,7 @@ public class ModelUtils {
/**
* Return true if the specified schema is an object with a fixed number of properties.
*
- * A ObjectSchema differs from an MapSchema in the following way:
+ * A ObjectSchema differs from a MapSchema in the following way:
* - An ObjectSchema is not extensible, i.e. it has a fixed number of properties.
* - A MapSchema is an object that can be extended with an arbitrary set of properties.
* The payload may include dynamic properties.
@@ -917,7 +917,7 @@ public class ModelUtils {
}
/**
- * If a RequestBody contains a reference to an other RequestBody with '$ref', returns the referenced RequestBody if it is found or the actual RequestBody in the other cases.
+ * If a RequestBody contains a reference to another RequestBody with '$ref', returns the referenced RequestBody if it is found or the actual RequestBody in the other cases.
*
* @param openAPI specification being checked
* @param requestBody potentially containing a '$ref'
@@ -946,7 +946,7 @@ public class ModelUtils {
}
/**
- * If a ApiResponse contains a reference to an other ApiResponse with '$ref', returns the referenced ApiResponse if it is found or the actual ApiResponse in the other cases.
+ * If a ApiResponse contains a reference to another ApiResponse with '$ref', returns the referenced ApiResponse if it is found or the actual ApiResponse in the other cases.
*
* @param openAPI specification being checked
* @param apiResponse potentially containing a '$ref'
@@ -975,7 +975,7 @@ public class ModelUtils {
}
/**
- * If a Parameter contains a reference to an other Parameter with '$ref', returns the referenced Parameter if it is found or the actual Parameter in the other cases.
+ * If a Parameter contains a reference to another Parameter with '$ref', returns the referenced Parameter if it is found or the actual Parameter in the other cases.
*
* @param openAPI specification being checked
* @param parameter potentially containing a '$ref'
@@ -1004,7 +1004,7 @@ public class ModelUtils {
}
/**
- * If a Callback contains a reference to an other Callback with '$ref', returns the referenced Callback if it is found or the actual Callback in the other cases.
+ * If a Callback contains a reference to another Callback with '$ref', returns the referenced Callback if it is found or the actual Callback in the other cases.
*
* @param openAPI specification being checked
* @param callback potentially containing a '$ref'
diff --git a/modules/openapi-generator/src/main/java/org/openapitools/codegen/validations/oas/RuleConfiguration.java b/modules/openapi-generator/src/main/java/org/openapitools/codegen/validations/oas/RuleConfiguration.java
index 56f254cfbac..1f85dad3c67 100644
--- a/modules/openapi-generator/src/main/java/org/openapitools/codegen/validations/oas/RuleConfiguration.java
+++ b/modules/openapi-generator/src/main/java/org/openapitools/codegen/validations/oas/RuleConfiguration.java
@@ -107,7 +107,7 @@ public class RuleConfiguration {
}
/**
- * Gets whether the recommendation check for for schemas containing type definitions.
+ * Gets whether the recommendation check for schemas containing type definitions.
*
* In OpenAPI 3.0.x, the "type" attribute must be a string value.
* In OpenAPI 3.1, the type attribute may be:
@@ -134,7 +134,7 @@ public class RuleConfiguration {
}
/**
- * Gets whether the recommendation check for for schemas containing the 'nullable' attribute.
+ * Gets whether the recommendation check for schemas containing the 'nullable' attribute.
*
* In OpenAPI 3.0.x, the "nullable" attribute is supported. However, because it is deprecated in 3.1
* and above, a warning is logged to prepare for OpenAPI 3.1 recommendations.
@@ -160,7 +160,7 @@ public class RuleConfiguration {
}
/**
- * Gets whether the recommendation check for for schemas containing invalid values for the 'type' attribute.
+ * Gets whether the recommendation check for schemas containing invalid values for the 'type' attribute.
*
*
* @return true
if enabled, false
if disabled
diff --git a/modules/openapi-generator/src/main/resources/C-libcurl/cJSON.c.mustache b/modules/openapi-generator/src/main/resources/C-libcurl/cJSON.c.mustache
index 2139b5efd93..afc9ff0db8b 100644
--- a/modules/openapi-generator/src/main/resources/C-libcurl/cJSON.c.mustache
+++ b/modules/openapi-generator/src/main/resources/C-libcurl/cJSON.c.mustache
@@ -125,7 +125,7 @@ typedef struct internal_hooks
} internal_hooks;
#if defined(_MSC_VER)
-/* work around MSVC error C2322: '...' address of dillimport '...' is not static */
+/* work around MSVC error C2322: '...' address of dllimport '...' is not static */
static void *internal_malloc(size_t size)
{
return malloc(size);
diff --git a/modules/openapi-generator/src/main/resources/Eiffel/api_client.mustache b/modules/openapi-generator/src/main/resources/Eiffel/api_client.mustache
index 6bfe00c620d..b0f9441243c 100644
--- a/modules/openapi-generator/src/main/resources/Eiffel/api_client.mustache
+++ b/modules/openapi-generator/src/main/resources/Eiffel/api_client.mustache
@@ -320,7 +320,7 @@ feature -- HTTP client: call api
-- Execute an HTTP request with the given options.
-- Relative path `a_path'
-- Method `a_method' "GET", "HEAD", "OPTIONS", "POST", "PUT", "PATCH" and "DELETE"
- -- A request `a_request' wth
+ -- A request `a_request' with
-- The query parameters: `query_params'.
-- The Header parameters: `header_params'.
-- The Request Body: `body' could be Void, object to be serialized using the serializer function `a_serializer' with a given content_type.
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/native/additional_properties.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/native/additional_properties.mustache
index 4086383f152..8e718279245 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/native/additional_properties.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/native/additional_properties.mustache
@@ -10,7 +10,7 @@
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache b/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache
index 20458364e93..e41ffd9d733 100644
--- a/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache
+++ b/modules/openapi-generator/src/main/resources/Java/libraries/okhttp-gson/pojo.mustache
@@ -579,7 +579,7 @@ public class {{classname}} {{#parent}}extends {{{.}}} {{/parent}}{{#vendorExtens
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
{{#isAdditionalPropertiesTrue}}
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf-ext/CXF2InterfaceComparator.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf-ext/CXF2InterfaceComparator.mustache
index d1fd0bf82c8..c8340c5e920 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf-ext/CXF2InterfaceComparator.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf-ext/CXF2InterfaceComparator.mustache
@@ -69,7 +69,7 @@ public class CXFInterfaceComparator implements ResourceComparator {
if (requestVerb.equals(HttpMethod.OPTIONS) && match(pathValue,requestPath)) {
return true;
}
- // Also check the HTTP verb since a single path can be match do multiple request, depending of the HTTP request verb.
+ // Also check the HTTP verb since a single path can be match do multiple request, depending on the HTTP request verb.
if (requestVerb.equals(methodHttpVerb) && match(pathValue, requestPath)) {
return true;
}
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf/CXF2InterfaceComparator.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf/CXF2InterfaceComparator.mustache
index d1fd0bf82c8..c8340c5e920 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf/CXF2InterfaceComparator.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/cxf/CXF2InterfaceComparator.mustache
@@ -69,7 +69,7 @@ public class CXFInterfaceComparator implements ResourceComparator {
if (requestVerb.equals(HttpMethod.OPTIONS) && match(pathValue,requestPath)) {
return true;
}
- // Also check the HTTP verb since a single path can be match do multiple request, depending of the HTTP request verb.
+ // Also check the HTTP verb since a single path can be match do multiple request, depending on the HTTP request verb.
if (requestVerb.equals(methodHttpVerb) && match(pathValue, requestPath)) {
return true;
}
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/README.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/README.mustache
index 93c1ccb7811..4718b9d4b90 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/README.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/README.mustache
@@ -9,13 +9,13 @@ This example uses the [JAX-RS](https://jax-rs-spec.java.net/) framework.
{{#interfaceOnly}}
This project produces a jar that defines some interfaces.
-The jar can be used in combination with an other project providing the implementation.
+The jar can be used in combination with another project providing the implementation.
{{/interfaceOnly}}
{{^interfaceOnly}}
The JAX-RS implementation needs to be provided by the application server you are deploying on.
-To run the server from the command line, you can use maven to provision an start a TomEE Server.
+To run the server from the command line, you can use maven to provision and start a TomEE Server.
Please execute the following:
```
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/helidon/README.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/helidon/README.mustache
index d2d0ddaa1e5..2661c14e4c2 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/helidon/README.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/helidon/README.mustache
@@ -12,7 +12,7 @@ The pom file is configured to use [Helidon](https://helidon.io/) as application
{{#interfaceOnly}}
This project produces a jar that defines some interfaces.
-The jar can be used in combination with an other project providing the implementation.
+The jar can be used in combination with another project providing the implementation.
{{/interfaceOnly}}
{{^interfaceOnly}}
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/kumuluzee/README.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/kumuluzee/README.mustache
index deea381ac94..d2ad96e1f30 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/kumuluzee/README.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/kumuluzee/README.mustache
@@ -12,7 +12,7 @@ The pom file is configured to use [KumuluzEE](https://ee.kumuluz.com/) as applic
{{#interfaceOnly}}
This project produces a jar that defines some interfaces.
- The jar can be used in combination with an other project providing the implementation.
+ The jar can be used in combination with another project providing the implementation.
{{/interfaceOnly}}
{{^interfaceOnly}}
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/openliberty/README.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/openliberty/README.mustache
index 21a76d82710..1db634c6f97 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/openliberty/README.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/openliberty/README.mustache
@@ -12,7 +12,7 @@ The pom file is configured to use [Open Liberty](https://openliberty.io/) as app
{{#interfaceOnly}}
This project produces a jar that defines some interfaces.
-The jar can be used in combination with an other project providing the implementation.
+The jar can be used in combination with another project providing the implementation.
{{/interfaceOnly}}
{{^interfaceOnly}}
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/quarkus/README.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/quarkus/README.mustache
index 6c5ef2f11dd..dfcb3d94a56 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/quarkus/README.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/quarkus/README.mustache
@@ -12,7 +12,7 @@ The pom file is configured to use [Quarkus](https://quarkus.io/) as application
{{#interfaceOnly}}
This project produces a jar that defines some interfaces.
-The jar can be used in combination with an other project providing the implementation.
+The jar can be used in combination with another project providing the implementation.
{{/interfaceOnly}}
{{^interfaceOnly}}
diff --git a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/thorntail/README.mustache b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/thorntail/README.mustache
index 66e31f3b0c7..c4ec90cbdee 100644
--- a/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/thorntail/README.mustache
+++ b/modules/openapi-generator/src/main/resources/JavaJaxRS/spec/libraries/thorntail/README.mustache
@@ -12,7 +12,7 @@ The pom file is configured to use [Thorntail](https://thorntail.io) as applicati
{{#interfaceOnly}}
This project produces a jar that defines some interfaces.
-The jar can be used in combination with an other project providing the implementation.
+The jar can be used in combination with another project providing the implementation.
{{/interfaceOnly}}
{{^interfaceOnly}}
diff --git a/modules/openapi-generator/src/main/resources/Javascript-Flowtyped/README.mustache b/modules/openapi-generator/src/main/resources/Javascript-Flowtyped/README.mustache
index e93ab6f53dd..754e5f7da02 100644
--- a/modules/openapi-generator/src/main/resources/Javascript-Flowtyped/README.mustache
+++ b/modules/openapi-generator/src/main/resources/Javascript-Flowtyped/README.mustache
@@ -15,7 +15,7 @@ Module system
### Building
-To build an compile the flow typed sources to javascript use:
+To build and compile the flow typed sources to javascript use:
```
npm install
# The dependency `babel-preset-react-app` requires that you specify `NODE_ENV` or `BABEL_ENV` environment variables
diff --git a/modules/openapi-generator/src/main/resources/Javascript/partial_model_oneof.mustache b/modules/openapi-generator/src/main/resources/Javascript/partial_model_oneof.mustache
index b226851ffc3..a0ff043a1d8 100644
--- a/modules/openapi-generator/src/main/resources/Javascript/partial_model_oneof.mustache
+++ b/modules/openapi-generator/src/main/resources/Javascript/partial_model_oneof.mustache
@@ -228,7 +228,7 @@ class {{classname}} {
{{#emitJSDoc}}
/**
- * Gets the actaul instance, which can be {{#oneOf}}{{{.}}}
{{^-last}}, {{/-last}}{{/oneOf}}.
+ * Gets the actual instance, which can be {{#oneOf}}{{{.}}}
{{^-last}}, {{/-last}}{{/oneOf}}.
* @return {{=< >=}}{(<#oneOf>module:<#invokerPackage>/ <#modelPackage>/ <&.><^-last>|-last>)}<={{ }}=> The actual instance.
*/
{{/emitJSDoc}}
@@ -238,7 +238,7 @@ class {{classname}} {
{{#emitJSDoc}}
/**
- * Sets the actaul instance, which can be {{#oneOf}}{{{.}}}
{{^-last}}, {{/-last}}{{/oneOf}}.
+ * Sets the actual instance, which can be {{#oneOf}}{{{.}}}
{{^-last}}, {{/-last}}{{/oneOf}}.
* @param {{=< >=}}{(<#oneOf>module:<#invokerPackage>/ <#modelPackage>/ <&.><^-last>|-last>)}<={{ }}=> obj The actual instance.
*/
{{/emitJSDoc}}
@@ -248,7 +248,7 @@ class {{classname}} {
{{#emitJSDoc}}
/**
- * Returns the JSON representation of the actual intance.
+ * Returns the JSON representation of the actual instance.
* @return {string}
*/
{{/emitJSDoc}}
diff --git a/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Project.csproj.mustache b/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Project.csproj.mustache
index c663a71f5d7..79ace57649c 100644
--- a/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Project.csproj.mustache
+++ b/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Project.csproj.mustache
@@ -20,9 +20,9 @@
..\..
-{{#useSeperateModelProject}}
+{{#useSeparateModelProject}}
-{{/useSeperateModelProject}}
+{{/useSeparateModelProject}}
{{#useFrameworkReference}}
{{#isLibrary}}
@@ -31,9 +31,9 @@
{{^useFrameworkReference}}
{{/useFrameworkReference}}
-{{^useSeperateModelProject}}
+{{^useSeparateModelProject}}
-{{/useSeperateModelProject}}
+{{/useSeparateModelProject}}
{{#useSwashbuckle}}
{{#useNewtonsoft}}
diff --git a/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Solution.mustache b/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Solution.mustache
index b72da20f3dc..1b80ca509f1 100644
--- a/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Solution.mustache
+++ b/modules/openapi-generator/src/main/resources/aspnetcore/3.0/Solution.mustache
@@ -5,10 +5,10 @@ VisualStudioVersion = 15.0.27428.2043
MinimumVisualStudioVersion = 10.0.40219.1
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "{{packageName}}", "{{sourceFolder}}\{{packageName}}\{{packageName}}.csproj", "{{packageGuid}}"
EndProject
-{{#useSeperateModelProject}}
+{{#useSeparateModelProject}}
Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "{{modelPackage}}", "{{sourceFolder}}\{{modelPackage}}\{{modelPackage}}.csproj", "{B8D18F25-F379-4B87-ACCC-F8A17E0AED38}"
EndProject
-{{/useSeperateModelProject}}
+{{/useSeparateModelProject}}
Global
GlobalSection(SolutionConfigurationPlatforms) = preSolution
Debug|Any CPU = Debug|Any CPU
@@ -19,12 +19,12 @@ Global
{{packageGuid}}.Debug|Any CPU.Build.0 = Debug|Any CPU
{{packageGuid}}.Release|Any CPU.ActiveCfg = Release|Any CPU
{{packageGuid}}.Release|Any CPU.Build.0 = Release|Any CPU
-{{#useSeperateModelProject}}
+{{#useSeparateModelProject}}
{B8D18F25-F379-4B87-ACCC-F8A17E0AED38}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
{B8D18F25-F379-4B87-ACCC-F8A17E0AED38}.Debug|Any CPU.Build.0 = Debug|Any CPU
{B8D18F25-F379-4B87-ACCC-F8A17E0AED38}.Release|Any CPU.ActiveCfg = Release|Any CPU
{B8D18F25-F379-4B87-ACCC-F8A17E0AED38}.Release|Any CPU.Build.0 = Release|Any CPU
-{{/useSeperateModelProject}}
+{{/useSeparateModelProject}}
EndGlobalSection
GlobalSection(SolutionProperties) = preSolution
HideSolutionNode = FALSE
diff --git a/modules/openapi-generator/src/main/resources/cpp-pistache-server/model-validation-body.mustache b/modules/openapi-generator/src/main/resources/cpp-pistache-server/model-validation-body.mustache
index ef92f2c3fbd..99dae60bbe4 100644
--- a/modules/openapi-generator/src/main/resources/cpp-pistache-server/model-validation-body.mustache
+++ b/modules/openapi-generator/src/main/resources/cpp-pistache-server/model-validation-body.mustache
@@ -116,7 +116,7 @@ TODO validate regex of string using pattern variable. This has two challenges
{ {{! and I do a similar hack with currentValuePath... }}
const std::string currentValuePath = oldValuePath + "[" + std::to_string(i) + "]";
{{#items}}
- {{> model-validation-body }} {{! Recursively apply template to array - this is where things will probbaly go wrong }}
+ {{> model-validation-body }} {{! Recursively apply template to array - this is where things will probably go wrong }}
{{/items}}
i++;
}
diff --git a/modules/openapi-generator/src/main/resources/cpp-tizen-client/Doxyfile.mustache b/modules/openapi-generator/src/main/resources/cpp-tizen-client/Doxyfile.mustache
index e4fc0125bf0..230d7431dc4 100644
--- a/modules/openapi-generator/src/main/resources/cpp-tizen-client/Doxyfile.mustache
+++ b/modules/openapi-generator/src/main/resources/cpp-tizen-client/Doxyfile.mustache
@@ -294,7 +294,7 @@ MARKDOWN_SUPPORT = YES
# When enabled doxygen tries to link words that correspond to documented
# classes, or namespaces to their corresponding documentation. Such a link can
-# be prevented in individual cases by by putting a % sign in front of the word
+# be prevented in individual cases by putting a % sign in front of the word
# or globally by setting AUTOLINK_SUPPORT to NO.
# The default value is: YES.
@@ -1397,7 +1397,7 @@ EXT_LINKS_IN_WINDOW = NO
FORMULA_FONTSIZE = 10
-# Use the FORMULA_TRANPARENT tag to determine whether or not the images
+# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
# generated for formulas are transparent PNGs. Transparent PNGs are not
# supported properly for IE 6.0, but are supported on all modern browsers.
#
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ApiClient.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ApiClient.mustache
index 72cbbf86b7e..7e54ed98b64 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ApiClient.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ApiClient.mustache
@@ -155,7 +155,7 @@ namespace {{packageName}}.Client
}
{{! NOTE: Any changes related to RestSharp should be done in this class. All other client classes are for extensibility by consumers.}}
///
- /// Provides a default implementation of an Api client (both synchronous and asynchronous implementatios),
+ /// Provides a default implementation of an Api client (both synchronous and asynchronous implementations),
/// encapsulating general REST accessor use cases.
///
{{>visibility}} partial class ApiClient : ISynchronousClient{{#supportsAsync}}, IAsynchronousClient{{/supportsAsync}}
@@ -164,7 +164,7 @@ namespace {{packageName}}.Client
///
/// Specifies the settings on a object.
- /// These settings can be adjusted to accomodate custom serialization rules.
+ /// These settings can be adjusted to accommodate custom serialization rules.
///
public JsonSerializerSettings SerializerSettings { get; set; } = new JsonSerializerSettings
{
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ClientUtils.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ClientUtils.mustache
index 3c04dcdbd0c..776be1b052f 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ClientUtils.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/ClientUtils.mustache
@@ -25,7 +25,7 @@ namespace {{packageName}}.Client
public static CompareLogic compareLogic;
///
- /// Static contstructor to initialise compareLogic.
+ /// Static constructor to initialise compareLogic.
///
static ClientUtils()
{
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/Configuration.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/Configuration.mustache
index c71c4260866..91cd1c86eb6 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/Configuration.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/Configuration.mustache
@@ -72,7 +72,7 @@ namespace {{packageName}}.Client
///
/// Gets or sets the API key based on the authentication name.
- /// This is the key and value comprising the "secret" for acessing an API.
+ /// This is the key and value comprising the "secret" for accessing an API.
///
/// The API key.
private IDictionary _apiKey;
@@ -469,7 +469,7 @@ namespace {{packageName}}.Client
}
else
{
- // use defualt value
+ // use default value
url = url.Replace("{" + variable.Key + "}", (string)serverVariables["default_value"]);
}
}
@@ -480,7 +480,7 @@ namespace {{packageName}}.Client
{{#hasHttpSignatureMethods}}
///
- /// Gets and Sets the HttpSigningConfiuration
+ /// Gets and Sets the HttpSigningConfiguration
///
public HttpSigningConfiguration HttpSigningConfiguration
{
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/HttpSigningConfiguration.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/HttpSigningConfiguration.mustache
index cc8c275e40b..f5cc312c6fe 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/HttpSigningConfiguration.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/HttpSigningConfiguration.mustache
@@ -18,7 +18,7 @@ namespace {{packageName}}.Client
{
#region
///
- /// Initailize the HashAlgorithm and SigningAlgorithm to default value
+ /// Initialize the HashAlgorithm and SigningAlgorithm to default value
///
public HttpSigningConfiguration()
{
@@ -238,7 +238,7 @@ namespace {{packageName}}.Client
headerValuesList.Add(string.Format("{0}: {1}", keyVal.Key, keyVal.Value));
}
- //Concatinate headers value separated by new line
+ //Concatenate headers value separated by new line
var headerValuesString = string.Join("\n", headerValuesList);
var signatureStringHash = GetStringHash(HashAlgorithm.ToString(), headerValuesString);
string headerSignatureStr = null;
@@ -361,7 +361,7 @@ namespace {{packageName}}.Client
private byte[] ConvertToECDSAANS1Format(byte[] signedBytes)
{
var derBytes = new List();
- byte derLength = 68; //default lenght for ECDSA code signinged bit 0x44
+ byte derLength = 68; //default length for ECDSA code signing bit 0x44
byte rbytesLength = 32; //R length 0x20
byte sbytesLength = 32; //S length 0x20
var rBytes = new List();
@@ -399,7 +399,7 @@ namespace {{packageName}}.Client
}
derBytes.Add(48); //start of the sequence 0x30
- derBytes.Add(derLength); //total length r lenth, type and r bytes
+ derBytes.Add(derLength); //total length r length, type and r bytes
derBytes.Add(2); //tag for integer
derBytes.Add(rbytesLength); //length of r
@@ -411,7 +411,7 @@ namespace {{packageName}}.Client
return derBytes.ToArray();
}
- private RSACryptoServiceProvider GetRSAProviderFromPemFile(string pemfile, SecureString keyPassPharse = null)
+ private RSACryptoServiceProvider GetRSAProviderFromPemFile(string pemfile, SecureString keyPassPhrase = null)
{
const string pempubheader = "-----BEGIN PUBLIC KEY-----";
const string pempubfooter = "-----END PUBLIC KEY-----";
@@ -431,7 +431,7 @@ namespace {{packageName}}.Client
if (isPrivateKeyFile)
{
- pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPharse);
+ pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPhrase);
if (pemkey == null)
{
return null;
@@ -441,7 +441,7 @@ namespace {{packageName}}.Client
return null;
}
- private byte[] ConvertPrivateKeyToBytes(string instr, SecureString keyPassPharse = null)
+ private byte[] ConvertPrivateKeyToBytes(string instr, SecureString keyPassPhrase = null)
{
const string pemprivheader = "-----BEGIN RSA PRIVATE KEY-----";
const string pemprivfooter = "-----END RSA PRIVATE KEY-----";
@@ -494,11 +494,11 @@ namespace {{packageName}}.Client
binkey = Convert.FromBase64String(encryptedstr);
}
catch (System.FormatException)
- { //data is not in base64 fromat
+ { //data is not in base64 format
return null;
}
- byte[] deskey = GetEncryptedKey(salt, keyPassPharse, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
+ byte[] deskey = GetEncryptedKey(salt, keyPassPhrase, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
if (deskey == null)
{
return null;
@@ -638,19 +638,19 @@ namespace {{packageName}}.Client
{
IntPtr unmanagedPswd = IntPtr.Zero;
int HASHLENGTH = 16; //MD5 bytes
- byte[] keymaterial = new byte[HASHLENGTH * miter]; //to store contatenated Mi hashed results
+ byte[] keymaterial = new byte[HASHLENGTH * miter]; //to store concatenated Mi hashed results
byte[] psbytes = new byte[secpswd.Length];
unmanagedPswd = Marshal.SecureStringToGlobalAllocAnsi(secpswd);
Marshal.Copy(unmanagedPswd, psbytes, 0, psbytes.Length);
Marshal.ZeroFreeGlobalAllocAnsi(unmanagedPswd);
- // --- contatenate salt and pswd bytes into fixed data array ---
+ // --- concatenate salt and pswd bytes into fixed data array ---
byte[] data00 = new byte[psbytes.Length + salt.Length];
Array.Copy(psbytes, data00, psbytes.Length); //copy the pswd bytes
Array.Copy(salt, 0, data00, psbytes.Length, salt.Length); //concatenate the salt bytes
- // ---- do multi-hashing and contatenate results D1, D2 ... into keymaterial bytes ----
+ // ---- do multi-hashing and concatenate results D1, D2 ... into keymaterial bytes ----
MD5 md5 = new MD5CryptoServiceProvider();
byte[] result = null;
byte[] hashtarget = new byte[HASHLENGTH + data00.Length]; //fixed length initial hashtarget
@@ -671,7 +671,7 @@ namespace {{packageName}}.Client
for (int i = 0; i < count; i++)
result = md5.ComputeHash(result);
- Array.Copy(result, 0, keymaterial, j * HASHLENGTH, result.Length); //contatenate to keymaterial
+ Array.Copy(result, 0, keymaterial, j * HASHLENGTH, result.Length); //concatenate to keymaterial
}
byte[] deskey = new byte[24];
Array.Copy(keymaterial, deskey, deskey.Length);
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/IReadableConfiguration.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/IReadableConfiguration.mustache
index 7c6487d92f8..bf142ffbac1 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/IReadableConfiguration.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/IReadableConfiguration.mustache
@@ -39,7 +39,7 @@ namespace {{packageName}}.Client
///
/// Gets the date time format.
///
- /// Date time foramt.
+ /// Date time format.
string DateTimeFormat { get; }
///
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/RequestOptions.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/RequestOptions.mustache
index dc924c733c1..0d3339f2f39 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/RequestOptions.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/RequestOptions.mustache
@@ -25,7 +25,7 @@ namespace {{packageName}}.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/git_push.sh.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/git_push.sh.mustache
index 8b3f689c912..228d338ebdb 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/git_push.sh.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/git_push.sh.mustache
@@ -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
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/ApiClient.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/ApiClient.mustache
index f6e850c8657..2582692cc20 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/ApiClient.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/ApiClient.mustache
@@ -159,7 +159,7 @@ namespace {{packageName}}.Client
}
}
///
- /// Provides a default implementation of an Api client (both synchronous and asynchronous implementatios),
+ /// Provides a default implementation of an Api client (both synchronous and asynchronous implementations),
/// encapsulating general REST accessor use cases.
///
///
@@ -175,7 +175,7 @@ namespace {{packageName}}.Client
///
/// Specifies the settings on a object.
- /// These settings can be adjusted to accomodate custom serialization rules.
+ /// These settings can be adjusted to accommodate custom serialization rules.
///
public JsonSerializerSettings SerializerSettings { get; set; } = new JsonSerializerSettings
{
@@ -192,8 +192,8 @@ namespace {{packageName}}.Client
///
/// Initializes a new instance of the , defaulting to the global configurations' base url.
- /// **IMPORTANT** This will also create an istance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHander .
+ /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
+ /// It's better to reuse the HttpClient and HttpClientHandler .
///
public ApiClient() :
this({{packageName}}.Client.GlobalConfiguration.Instance.BasePath)
@@ -202,8 +202,8 @@ namespace {{packageName}}.Client
///
/// Initializes a new instance of the .
- /// **IMPORTANT** This will also create an istance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHander .
+ /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
+ /// It's better to reuse the HttpClient and HttpClientHandler .
///
/// The target service's base path in URL format.
///
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/RequestOptions.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/RequestOptions.mustache
index bc5a8e348b8..c656d899452 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/RequestOptions.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/RequestOptions.mustache
@@ -25,7 +25,7 @@ namespace {{packageName}}.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/api.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/api.mustache
index 20ddfe96b98..f0a1aa6497d 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/api.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/api.mustache
@@ -106,8 +106,8 @@ namespace {{packageName}}.{{apiPackage}}
///
/// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an istance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHander .
+ /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
+ /// It's better to reuse the HttpClient and HttpClientHandler .
///
///
public {{classname}}() : this((string)null)
@@ -116,8 +116,8 @@ namespace {{packageName}}.{{apiPackage}}
///
/// Initializes a new instance of the class.
- /// **IMPORTANT** This will also create an istance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHander .
+ /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
+ /// It's better to reuse the HttpClient and HttpClientHandler .
///
/// The target service's base path in URL format.
///
@@ -138,8 +138,8 @@ namespace {{packageName}}.{{apiPackage}}
///
/// Initializes a new instance of the class using Configuration object.
- /// **IMPORTANT** This will also create an istance of HttpClient, which is less than ideal.
- /// It's better to reuse the HttpClient and HttpClientHander .
+ /// **IMPORTANT** This will also create an instance of HttpClient, which is less than ideal.
+ /// It's better to reuse the HttpClient and HttpClientHandler .
///
/// An instance of Configuration.
///
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/model.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/model.mustache
index 0de1e05e514..bdd076c3f01 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/model.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/libraries/httpclient/model.mustache
@@ -34,11 +34,11 @@ using OpenAPIClientUtils = {{packageName}}.Client.ClientUtils;
using System.Reflection;
{{/-first}}
{{/oneOf}}
-{{#aneOf}}
+{{#anyOf}}
{{#-first}}
using System.Reflection;
{{/-first}}
-{{/aneOf}}
+{{/anyOf}}
namespace {{packageName}}.{{modelPackage}}
{
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelAnyOf.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelAnyOf.mustache
index 931f7646da8..fbd9fe0441d 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelAnyOf.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelAnyOf.mustache
@@ -59,7 +59,7 @@
{{#anyOf}}
///
- /// Get the actual instance of `{{{.}}}`. If the actual instanct is not `{{{.}}}`,
+ /// Get the actual instance of `{{{.}}}`. If the actual instance is not `{{{.}}}`,
/// the InvalidClassException will be thrown
///
/// An instance of {{{.}}}
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelOneOf.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelOneOf.mustache
index d2d6e28b3f9..b3a5503cba4 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelOneOf.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/modelOneOf.mustache
@@ -59,7 +59,7 @@
{{#oneOf}}
///
- /// Get the actual instance of `{{{.}}}`. If the actual instanct is not `{{{.}}}`,
+ /// Get the actual instance of `{{{.}}}`. If the actual instance is not `{{{.}}}`,
/// the InvalidClassException will be thrown
///
/// An instance of {{{.}}}
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/nuspec.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/nuspec.mustache
index 66254acffd4..b5740c962e5 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore-functions/nuspec.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore-functions/nuspec.mustache
@@ -12,7 +12,7 @@
$author$
+ users to easily find other packages by the same owners. -->
$author$
false
false
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/RequestOptions.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/RequestOptions.mustache
index 40436b96577..928c5e74073 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/RequestOptions.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/RequestOptions.mustache
@@ -25,7 +25,7 @@ namespace {{packageName}}.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiException.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiException.mustache
index 7777fd09c44..c716cf25e99 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiException.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiException.mustache
@@ -29,7 +29,7 @@ namespace {{packageName}}.Client
public string RawContent { get; }
///
- /// Construct the ApiException from parts of the reponse
+ /// Construct the ApiException from parts of the response
///
///
///
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiResponse`1.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiResponse`1.mustache
index 1bcf4a84148..f37833790ed 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiResponse`1.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/ApiResponse`1.mustache
@@ -82,7 +82,7 @@ namespace {{packageName}}.Client
#endregion Properties
///
- /// Construct the reponse using an HttpResponseMessage
+ /// Construct the response using an HttpResponseMessage
///
///
///
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/HttpSigningConfiguration.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/HttpSigningConfiguration.mustache
index 29ea235945d..4e17cf240ef 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/HttpSigningConfiguration.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/HttpSigningConfiguration.mustache
@@ -190,7 +190,7 @@ namespace {{packageName}}.Client
foreach (var keyVal in httpSignatureHeader)
headerValuesList.Add(string.Format("{0}: {1}", keyVal.Key, keyVal.Value));
- //Concatinate headers value separated by new line
+ //Concatenate headers value separated by new line
var headerValuesString = string.Join("\n", headerValuesList);
var signatureStringHash = GetStringHash(HashAlgorithm.ToString(), headerValuesString);
string{{nrt?}} headerSignatureStr = null;
@@ -318,7 +318,7 @@ namespace {{packageName}}.Client
private byte[] ConvertToECDSAANS1Format(byte[] signedBytes)
{
var derBytes = new List();
- byte derLength = 68; //default lenght for ECDSA code signinged bit 0x44
+ byte derLength = 68; //default length for ECDSA code signing bit 0x44
byte rbytesLength = 32; //R length 0x20
byte sbytesLength = 32; //S length 0x20
var rBytes = new List();
@@ -353,7 +353,7 @@ namespace {{packageName}}.Client
}
derBytes.Add(48); //start of the sequence 0x30
- derBytes.Add(derLength); //total length r lenth, type and r bytes
+ derBytes.Add(derLength); //total length r length, type and r bytes
derBytes.Add(2); //tag for integer
derBytes.Add(rbytesLength); //length of r
@@ -365,7 +365,7 @@ namespace {{packageName}}.Client
return derBytes.ToArray();
}
- private RSACryptoServiceProvider{{nrt?}} GetRSAProviderFromPemFile(String pemfile, SecureString{{nrt?}} keyPassPharse = null)
+ private RSACryptoServiceProvider{{nrt?}} GetRSAProviderFromPemFile(String pemfile, SecureString{{nrt?}} keyPassPhrase = null)
{
const String pempubheader = "-----BEGIN PUBLIC KEY-----";
const String pempubfooter = "-----END PUBLIC KEY-----";
@@ -382,7 +382,7 @@ namespace {{packageName}}.Client
if (isPrivateKeyFile)
{
- pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPharse);
+ pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPhrase);
if (pemkey == null)
return null;
@@ -392,7 +392,7 @@ namespace {{packageName}}.Client
return null;
}
- private byte[]{{nrt?}} ConvertPrivateKeyToBytes(String instr, SecureString{{nrt?}} keyPassPharse = null)
+ private byte[]{{nrt?}} ConvertPrivateKeyToBytes(String instr, SecureString{{nrt?}} keyPassPhrase = null)
{
const String pemprivheader = "-----BEGIN RSA PRIVATE KEY-----";
const String pemprivfooter = "-----END RSA PRIVATE KEY-----";
@@ -440,12 +440,12 @@ namespace {{packageName}}.Client
binkey = Convert.FromBase64String(encryptedstr);
}
catch (System.FormatException)
- { //data is not in base64 fromat
+ { //data is not in base64 format
return null;
}
- // TODO: what do we do here if keyPassPharse is null?
- byte[] deskey = GetEncryptedKey(salt, keyPassPharse{{nrt!}}, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
+ // TODO: what do we do here if keyPassPhrase is null?
+ byte[] deskey = GetEncryptedKey(salt, keyPassPhrase{{nrt!}}, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
if (deskey == null)
return null;
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/README.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/README.mustache
index 28ace9bfd34..e76936568a7 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/README.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/README.mustache
@@ -170,7 +170,7 @@ Class | Method | HTTP request | Description
- modelTests: {{generateModelTests}}
- withXml: {{withXml}}
-## [OpenApi Generator Parameteres](https://openapi-generator.tech/docs/generators/csharp-netcore)
+## [OpenApi Generator Parameters](https://openapi-generator.tech/docs/generators/csharp-netcore)
- allowUnicodeIdentifiers: {{allowUnicodeIdentifiers}}
- apiName: {{apiName}}
- caseInsensitiveResponseHeaders: {{caseInsensitiveResponseHeaders}}
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/api.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/api.mustache
index 5e2bb67c23b..439b19cad35 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/api.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/api.mustache
@@ -377,7 +377,7 @@ namespace {{packageName}}.{{apiPackage}}
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -395,7 +395,7 @@ namespace {{packageName}}.{{apiPackage}}
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}{{^-last}}
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/git_push.ps1.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/git_push.ps1.mustache
index 0f4084ef817..f263c2bc597 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/git_push.ps1.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/generichost/git_push.ps1.mustache
@@ -49,7 +49,7 @@ Set-StrictMode -Version 3.0
if ($Help){
Write-Output "
This script will initialize a git repository, then add and commit all files.
- The local repository will then be pushed to your prefered git provider.
+ The local repository will then be pushed to your preferred git provider.
If the remote repository does not exist yet and you are using GitHub,
the repository will be created for you provided you have the GitHub CLI installed.
diff --git a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/httpclient/RequestOptions.mustache b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/httpclient/RequestOptions.mustache
index 62859649ced..25e76d03d21 100644
--- a/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/httpclient/RequestOptions.mustache
+++ b/modules/openapi-generator/src/main/resources/csharp-netcore/libraries/httpclient/RequestOptions.mustache
@@ -25,7 +25,7 @@ namespace {{packageName}}.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/modules/openapi-generator/src/main/resources/dart/libraries/dio/serialization/built_value/class_serializer.mustache b/modules/openapi-generator/src/main/resources/dart/libraries/dio/serialization/built_value/class_serializer.mustache
index d3b3d8916ca..a0528cd1491 100644
--- a/modules/openapi-generator/src/main/resources/dart/libraries/dio/serialization/built_value/class_serializer.mustache
+++ b/modules/openapi-generator/src/main/resources/dart/libraries/dio/serialization/built_value/class_serializer.mustache
@@ -262,7 +262,7 @@ class _${{classname}}Serializer implements PrimitiveSerializer<{{classname}}> {
parent classes don't have builder
so they must delegate to another serializer using
1) discriminator + mapping
- 2) concrete implmentation ($classname)
+ 2) concrete implementation ($classname)
}}
{{#hasDiscriminatorWithNonEmptyMapping}}
{{#discriminator}}
diff --git a/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/README.mustache b/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/README.mustache
index ea684b99848..b007ccc4814 100644
--- a/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/README.mustache
+++ b/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/README.mustache
@@ -70,8 +70,8 @@ val requestQueue: Lazy = lazy(initializer = {
The above constructor for each api allows the following to be customized
- A custom context, so either a singleton request queue or different scope can be created - see
https://developer.android.com/training/volley/requestqueue#singleton
-- An overrideable request queue - which in turn can have a custom http url stack passed to it
-- An overrideable request factory constructor call, or a request factory that can be overridden by a custom template, with
+- An overridable request queue - which in turn can have a custom http url stack passed to it
+- An overridable request factory constructor call, or a request factory that can be overridden by a custom template, with
custom header factory, request post processors and custom gson adapters injected.
#### Overriding request generation
diff --git a/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/auth/oauth.mustache b/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/auth/oauth.mustache
index 78ffc6a2d7c..81a285bc478 100644
--- a/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/auth/oauth.mustache
+++ b/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/auth/oauth.mustache
@@ -1,5 +1,5 @@
val basicAuthHeaderFactoryBuilder = { username: String?, password: String? ->
{
- throw NotImplementedError("OAuth security scheme header factory not impemented yet - see open api generator auth/oauth.mustache")
+ throw NotImplementedError("OAuth security scheme header factory not implemented yet - see open api generator auth/oauth.mustache")
mapOf("" to "")}
}
diff --git a/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/request/RequestFactory.mustache b/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/request/RequestFactory.mustache
index e9bc5d21283..46507bff1b5 100644
--- a/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/request/RequestFactory.mustache
+++ b/modules/openapi-generator/src/main/resources/kotlin-client/libraries/jvm-volley/request/RequestFactory.mustache
@@ -40,7 +40,7 @@ class RequestFactory(private val headerFactories : List<() -> Map (acc + factory.invoke()).toMutableMap() }
// If we decide to support auth parameters in the url, then you will reference them by supplying a url string
- // with known variable name refernces in the string. We will then apply
+ // with known variable name references in the string. We will then apply
val updatedUrl = if (!queryParams.isNullOrEmpty()) {
queryParams.asSequence().fold("$url?") {acc, param ->
"$acc${escapeString(param.key)}=${escapeString(param.value)}&"
diff --git a/modules/openapi-generator/src/main/resources/nodejs-express-server/utils/openapiRouter.mustache b/modules/openapi-generator/src/main/resources/nodejs-express-server/utils/openapiRouter.mustache
index a0651549de3..4c7bbdca7f3 100644
--- a/modules/openapi-generator/src/main/resources/nodejs-express-server/utils/openapiRouter.mustache
+++ b/modules/openapi-generator/src/main/resources/nodejs-express-server/utils/openapiRouter.mustache
@@ -19,7 +19,7 @@ function handleError(err, request, response, next) {
* middleware. All parameters are collected in the request.swagger.values key-value object
*
* The assumption is that security handlers have already verified and allowed access
- * to this path. If the business-logic of a particular path is dependant on authentication
+ * to this path. If the business-logic of a particular path is dependent on authentication
* parameters (e.g. scope checking) - it is recommended to define the authentication header
* as one of the parameters expected in the OpenAPI/Swagger document.
*
diff --git a/modules/openapi-generator/src/main/resources/php-slim-server/index.mustache b/modules/openapi-generator/src/main/resources/php-slim-server/index.mustache
index 322fc8883d3..5020bcad22f 100644
--- a/modules/openapi-generator/src/main/resources/php-slim-server/index.mustache
+++ b/modules/openapi-generator/src/main/resources/php-slim-server/index.mustache
@@ -64,7 +64,7 @@ $config['settings'] = [
// 'addContentLengthHeader' => true,
/**
- * Filename for caching the FastRoute routes. Must be set to to a valid filename within
+ * Filename for caching the FastRoute routes. Must be set to a valid filename within
* a writeable directory. If the file does not exist, then it is created with the correct
* cache information on first run.
* Set to false to disable the FastRoute cache system.
diff --git a/modules/openapi-generator/src/main/resources/php/ObjectSerializer.mustache b/modules/openapi-generator/src/main/resources/php/ObjectSerializer.mustache
index 5cd224a6e04..6639723ec50 100644
--- a/modules/openapi-generator/src/main/resources/php/ObjectSerializer.mustache
+++ b/modules/openapi-generator/src/main/resources/php/ObjectSerializer.mustache
@@ -436,7 +436,7 @@ class ObjectSerializer
}
if ($class === '\DateTime') {
- // Some API's return an invalid, empty string as a
+ // Some APIs return an invalid, empty string as a
// date-time property. DateTime::__construct() will return
// the current time for empty input which is probably not
// what is meant. The invalid empty string is probably to
@@ -446,7 +446,7 @@ class ObjectSerializer
try {
return new \DateTime($data);
} catch (\Exception $exception) {
- // Some API's return a date-time with too high nanosecond
+ // Some APIs return a date-time with too high nanosecond
// precision for php's DateTime to handle.
// With provided regexp 6 digits of microseconds saved
return new \DateTime(self::sanitizeTimestamp($data));
diff --git a/modules/openapi-generator/src/main/resources/powershell/http_signature_auth.mustache b/modules/openapi-generator/src/main/resources/powershell/http_signature_auth.mustache
index 0206a18d7de..532eb1a88fb 100644
--- a/modules/openapi-generator/src/main/resources/powershell/http_signature_auth.mustache
+++ b/modules/openapi-generator/src/main/resources/powershell/http_signature_auth.mustache
@@ -112,7 +112,7 @@ function Get-{{{apiNamePrefix}}}HttpSignedHeader {
-HashAlgorithmName $httpSigningConfiguration.HashAlgorithm `
-KeyPassPhrase $httpSigningConfiguration.KeyPassPhrase
}
- #Depricated
+ #Deprecated
<#$cryptographicScheme = Get-{{{apiNamePrefix}}}CryptographicScheme -SigningAlgorithm $httpSigningConfiguration.SigningAlgorithm `
-HashAlgorithm $httpSigningConfiguration.HashAlgorithm
#>
diff --git a/modules/openapi-generator/src/main/resources/protobuf-schema/README.mustache b/modules/openapi-generator/src/main/resources/protobuf-schema/README.mustache
index 0724e27a954..ab3985ea36c 100644
--- a/modules/openapi-generator/src/main/resources/protobuf-schema/README.mustache
+++ b/modules/openapi-generator/src/main/resources/protobuf-schema/README.mustache
@@ -24,9 +24,9 @@ Below are some usage examples for Go and Ruby. For other languages, please refer
### Go
```
# assuming `protoc-gen-go` has been installed with `go get -u github.com/golang/protobuf/protoc-gen-go`
-mkdir /var/tmp/go/{{{pacakgeName}}}
-protoc --go_out=/var/tmp/go/{{{pacakgeName}}} services/*
-protoc --go_out=/var/tmp/go/{{{pacakgeName}}} models/*
+mkdir /var/tmp/go/{{{packageName}}}
+protoc --go_out=/var/tmp/go/{{{packageName}}} services/*
+protoc --go_out=/var/tmp/go/{{{packageName}}} models/*
```
### Ruby
diff --git a/modules/openapi-generator/src/main/resources/python-aiohttp/README.mustache b/modules/openapi-generator/src/main/resources/python-aiohttp/README.mustache
index 42dd581c40e..212961153cf 100644
--- a/modules/openapi-generator/src/main/resources/python-aiohttp/README.mustache
+++ b/modules/openapi-generator/src/main/resources/python-aiohttp/README.mustache
@@ -38,7 +38,7 @@ pytest
## Prevent file overriding
-After first generation, add edited files to _.openapi-generator-ignore_ to prevent generator to overwrite them. Typically:
+After first generation, add edited files to _.openapi-generator-ignore_ to prevent generator from overwriting them. Typically:
```
server/controllers/*
test/*
diff --git a/modules/openapi-generator/src/main/resources/python-prior/__init__models.mustache b/modules/openapi-generator/src/main/resources/python-prior/__init__models.mustache
index 76d91fc5d47..6cbba3113d2 100644
--- a/modules/openapi-generator/src/main/resources/python-prior/__init__models.mustache
+++ b/modules/openapi-generator/src/main/resources/python-prior/__init__models.mustache
@@ -4,7 +4,7 @@
# if you have many models here with many references from one model to another this may
# raise a RecursionError
# to avoid this, import only the models that you directly need like:
-# from from {{modelPackage}}.pet import Pet
+# from {{modelPackage}}.pet import Pet
# or import this package, but before doing it, use:
# import sys
# sys.setrecursionlimit(n)
diff --git a/modules/openapi-generator/src/main/resources/python/__init__models.handlebars b/modules/openapi-generator/src/main/resources/python/__init__models.handlebars
index 31eac9cd544..0899faf1da1 100644
--- a/modules/openapi-generator/src/main/resources/python/__init__models.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/__init__models.handlebars
@@ -6,7 +6,7 @@
# if you have many models here with many references from one model to another this may
# raise a RecursionError
# to avoid this, import only the models that you directly need like:
-# from from {{packageName}}.{{modelPackage}}.pet import Pet
+# from {{packageName}}.{{modelPackage}}.pet import Pet
# or import this package, but before doing it, use:
# import sys
# sys.setrecursionlimit(n)
diff --git a/modules/openapi-generator/src/main/resources/python/api_client.handlebars b/modules/openapi-generator/src/main/resources/python/api_client.handlebars
index 4379c88b823..75d90cd2b1b 100644
--- a/modules/openapi-generator/src/main/resources/python/api_client.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/api_client.handlebars
@@ -1250,9 +1250,9 @@ class ApiClient:
# The HTTP signature scheme requires multiple HTTP headers
# that are calculated dynamically.
signing_info = self.configuration.signing_info
- querys = tuple()
+ queries = tuple()
auth_headers = signing_info.get_http_signature_headers(
- resource_path, method, headers, body, querys)
+ resource_path, method, headers, body, queries)
for key, value in auth_headers.items():
headers.add(key, value)
{{/if}}
diff --git a/modules/openapi-generator/src/main/resources/python/configuration.handlebars b/modules/openapi-generator/src/main/resources/python/configuration.handlebars
index 8837fa9515d..26f940dde15 100644
--- a/modules/openapi-generator/src/main/resources/python/configuration.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/configuration.handlebars
@@ -134,7 +134,7 @@ conf = {{{packageName}}}.Configuration(
'Authorization' header, which is used to carry the signature.
One may be tempted to sign all headers by default, but in practice it rarely works.
- This is beccause explicit proxies, transparent proxies, TLS termination endpoints or
+ This is because explicit proxies, transparent proxies, TLS termination endpoints or
load balancers may add/modify/remove headers. Include the HTTP headers that you know
are not going to be modified in transit.
@@ -328,7 +328,7 @@ conf = {{{packageName}}}.Configuration(
self._disabled_client_side_validations = s
{{#if hasHttpSignatureMethods}}
if name == "signing_info" and value is not None:
- # Ensure the host paramater from signing info is the same as
+ # Ensure the host parameter from signing info is the same as
# Configuration.host.
value.host = self.host
{{/if}}
diff --git a/modules/openapi-generator/src/main/resources/python/git_push.sh.handlebars b/modules/openapi-generator/src/main/resources/python/git_push.sh.handlebars
index 8b3f689c912..228d338ebdb 100644
--- a/modules/openapi-generator/src/main/resources/python/git_push.sh.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/git_push.sh.handlebars
@@ -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
diff --git a/modules/openapi-generator/src/main/resources/python/schemas.handlebars b/modules/openapi-generator/src/main/resources/python/schemas.handlebars
index e61dd99ac70..2971f289857 100644
--- a/modules/openapi-generator/src/main/resources/python/schemas.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/schemas.handlebars
@@ -378,7 +378,7 @@ class Schema:
_validate_oapg returns a key value pair
where the key is the path to the item, and the value will be the required manufactured class
made out of the matching schemas
- 2. value is an instance of the the correct schema type
+ 2. value is an instance of the correct schema type
the value is NOT validated by _validate_oapg, _validate_oapg only checks that the instance is of the correct schema type
for this value, _validate_oapg does NOT return an entry for it in _path_to_schemas
and in list/dict _get_items_oapg,_get_properties_oapg the value will be directly assigned
@@ -861,7 +861,7 @@ class ValidatorBase:
schema_keyword not in configuration._disabled_client_side_validations)
@staticmethod
- def _raise_validation_errror_message_oapg(value, constraint_msg, constraint_value, path_to_item, additional_txt=""):
+ def _raise_validation_error_message_oapg(value, constraint_msg, constraint_value, path_to_item, additional_txt=""):
raise ApiValueError(
"Invalid value `{value}`, {constraint_msg} `{constraint_value}`{additional_txt} at {path_to_item}".format(
value=value,
@@ -956,7 +956,7 @@ class StrBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('maxLength', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'max_length') and
len(arg) > cls.MetaOapg.max_length):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="length must be less than or equal to",
constraint_value=cls.MetaOapg.max_length,
@@ -966,7 +966,7 @@ class StrBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('minLength', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'min_length') and
len(arg) < cls.MetaOapg.min_length):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="length must be greater than or equal to",
constraint_value=cls.MetaOapg.min_length,
@@ -981,14 +981,14 @@ class StrBase(ValidatorBase):
if flags != 0:
# Don't print the regex flags if the flags are not
# specified in the OAS document.
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="must match regular expression",
constraint_value=regex_dict['pattern'],
path_to_item=validation_metadata.path_to_item,
additional_txt=" with flags=`{}`".format(flags)
)
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="must match regular expression",
constraint_value=regex_dict['pattern'],
@@ -1204,7 +1204,7 @@ class NumberBase(ValidatorBase):
return self._as_float
except AttributeError:
if self.as_tuple().exponent >= 0:
- raise ApiValueError(f'{self} is not an float')
+ raise ApiValueError(f'{self} is not a float')
self._as_float = float(self)
return self._as_float
@@ -1221,7 +1221,7 @@ class NumberBase(ValidatorBase):
multiple_of_value = cls.MetaOapg.multiple_of
if (not (float(arg) / multiple_of_value).is_integer()):
# Note 'multipleOf' will be as good as the floating point arithmetic.
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="value must be a multiple of",
constraint_value=multiple_of_value,
@@ -1242,7 +1242,7 @@ class NumberBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('exclusiveMaximum', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'exclusive_maximum') and
arg >= cls.MetaOapg.exclusive_maximum):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="must be a value less than",
constraint_value=cls.MetaOapg.exclusive_maximum,
@@ -1252,7 +1252,7 @@ class NumberBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('maximum', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'inclusive_maximum') and
arg > cls.MetaOapg.inclusive_maximum):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="must be a value less than or equal to",
constraint_value=cls.MetaOapg.inclusive_maximum,
@@ -1262,7 +1262,7 @@ class NumberBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('exclusiveMinimum', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'exclusive_minimum') and
arg <= cls.MetaOapg.exclusive_minimum):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="must be a value greater than",
constraint_value=cls.MetaOapg.exclusive_maximum,
@@ -1272,7 +1272,7 @@ class NumberBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('minimum', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'inclusive_minimum') and
arg < cls.MetaOapg.inclusive_minimum):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="must be a value greater than or equal to",
constraint_value=cls.MetaOapg.inclusive_minimum,
@@ -1340,7 +1340,7 @@ class ListBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('maxItems', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'max_items') and
len(arg) > cls.MetaOapg.max_items):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="number of items must be less than or equal to",
constraint_value=cls.MetaOapg.max_items,
@@ -1350,7 +1350,7 @@ class ListBase(ValidatorBase):
if (cls._is_json_validation_enabled_oapg('minItems', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'min_items') and
len(arg) < cls.MetaOapg.min_items):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="number of items must be greater than or equal to",
constraint_value=cls.MetaOapg.min_items,
@@ -1361,7 +1361,7 @@ class ListBase(ValidatorBase):
hasattr(cls.MetaOapg, 'unique_items') and cls.MetaOapg.unique_items and arg):
unique_items = set(arg)
if len(arg) > len(unique_items):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="duplicate items were found, and the tuple must not contain duplicates because",
constraint_value='unique_items==True',
@@ -1604,7 +1604,7 @@ class DictBase(Discriminable, ValidatorBase):
if (cls._is_json_validation_enabled_oapg('maxProperties', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'max_properties') and
len(arg) > cls.MetaOapg.max_properties):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="number of properties must be less than or equal to",
constraint_value=cls.MetaOapg.max_properties,
@@ -1614,7 +1614,7 @@ class DictBase(Discriminable, ValidatorBase):
if (cls._is_json_validation_enabled_oapg('minProperties', validation_metadata.configuration) and
hasattr(cls.MetaOapg, 'min_properties') and
len(arg) < cls.MetaOapg.min_properties):
- cls._raise_validation_errror_message_oapg(
+ cls._raise_validation_error_message_oapg(
value=arg,
constraint_msg="number of properties must be greater than or equal to",
constraint_value=cls.MetaOapg.min_properties,
diff --git a/modules/openapi-generator/src/main/resources/python/signing.handlebars b/modules/openapi-generator/src/main/resources/python/signing.handlebars
index 26d2b8cb37c..a853a998ef4 100644
--- a/modules/openapi-generator/src/main/resources/python/signing.handlebars
+++ b/modules/openapi-generator/src/main/resources/python/signing.handlebars
@@ -334,7 +334,7 @@ class HttpSigningConfiguration(object):
:return: A tuple of (digest, prefix).
The digest is a hashing object that contains the cryptographic digest of
the HTTP request.
- The prefix is a string that identifies the cryptographc hash. It is used
+ The prefix is a string that identifies the cryptographic hash. It is used
to generate the 'Digest' header as specified in RFC 3230.
"""
if self.hash_algorithm == HASH_SHA512:
diff --git a/modules/openapi-generator/src/main/resources/r/ApiResponse.mustache b/modules/openapi-generator/src/main/resources/r/ApiResponse.mustache
index ca8c3f78582..c2e9eb5be47 100644
--- a/modules/openapi-generator/src/main/resources/r/ApiResponse.mustache
+++ b/modules/openapi-generator/src/main/resources/r/ApiResponse.mustache
@@ -6,7 +6,7 @@
#' @field content The deserialized response body.
#' @field response The raw response from the endpoint.
#' @field status_code The HTTP response status code.
-#' @field status_code_desc The brief descriptoin of the HTTP response status code.
+#' @field status_code_desc The brief description of the HTTP response status code.
#' @field headers The HTTP response headers.
#' @export
ApiResponse <- R6::R6Class(
diff --git a/modules/openapi-generator/src/main/resources/r/api.mustache b/modules/openapi-generator/src/main/resources/r/api.mustache
index a49694f8a07..46067f6d528 100644
--- a/modules/openapi-generator/src/main/resources/r/api.mustache
+++ b/modules/openapi-generator/src/main/resources/r/api.mustache
@@ -386,7 +386,7 @@
# check if items are unique
if (!identical(`{{{paramName}}}`, unique(`{{{paramName}}}`))) {
{{#useDefaultExceptionHandling}}
- stop("Invalid value for {{{paramName}}} when calling {{classname}}${{operationId}}. Items must be unqiue.")
+ stop("Invalid value for {{{paramName}}} when calling {{classname}}${{operationId}}. Items must be unique.")
{{/useDefaultExceptionHandling}}
{{#useRlangExceptionHandling}}
rlang::abort(message = "Invalid value for `{{paramName}}` when calling {{classname}}${{operationId}}. Items must be unique.",
diff --git a/modules/openapi-generator/src/main/resources/r/api_client.mustache b/modules/openapi-generator/src/main/resources/r/api_client.mustache
index 395ff41be4e..9530234c8c4 100644
--- a/modules/openapi-generator/src/main/resources/r/api_client.mustache
+++ b/modules/openapi-generator/src/main/resources/r/api_client.mustache
@@ -411,10 +411,10 @@ ApiClient <- R6::R6Class(
}
return_obj
},
- #' Return a propery header (for accept or content-type).
+ #' Return a property header (for accept or content-type).
#'
#' @description
- #' Return a propery header (for accept or content-type). If JSON-related MIME is found,
+ #' Return a property header (for accept or content-type). If JSON-related MIME is found,
#' return it. Otherwise, return the first one, if any.
#'
#' @param headers A list of headers
diff --git a/modules/openapi-generator/src/main/resources/r/libraries/httr2/api_client.mustache b/modules/openapi-generator/src/main/resources/r/libraries/httr2/api_client.mustache
index fd9ddd884b6..decfe50f1d0 100644
--- a/modules/openapi-generator/src/main/resources/r/libraries/httr2/api_client.mustache
+++ b/modules/openapi-generator/src/main/resources/r/libraries/httr2/api_client.mustache
@@ -171,7 +171,7 @@ ApiClient <- R6::R6Class(
#' @param header_params The header parameters.
#' @param form_params The form parameters.
#' @param file_params The form parameters to upload files.
- #' @param accepts The HTTP accpet headers.
+ #' @param accepts The HTTP accept headers.
#' @param content_types The HTTP content-type headers.
#' @param body The HTTP request body.
#' @param is_oauth True if the endpoints required OAuth authentication.
@@ -202,7 +202,7 @@ ApiClient <- R6::R6Class(
#' @param header_params The header parameters.
#' @param form_params The form parameters.
#' @param file_params The form parameters for uploading files.
- #' @param accepts The HTTP accpet headers.
+ #' @param accepts The HTTP accept headers.
#' @param content_types The HTTP content-type headers.
#' @param body The HTTP request body.
#' @param is_oauth True if the endpoints required OAuth authentication.
@@ -416,10 +416,10 @@ ApiClient <- R6::R6Class(
}
return_obj
},
- #' Return a propery header (for accept or content-type).
+ #' Return a property header (for accept or content-type).
#'
#' @description
- #' Return a propery header (for accept or content-type). If JSON-related MIME is found,
+ #' Return a property header (for accept or content-type). If JSON-related MIME is found,
#' return it. Otherwise, return the first one, if any.
#'
#' @param headers A list of headers
diff --git a/modules/openapi-generator/src/main/resources/r/modelAnyOf.mustache b/modules/openapi-generator/src/main/resources/r/modelAnyOf.mustache
index 84cc761b407..f16a9cd2d1b 100644
--- a/modules/openapi-generator/src/main/resources/r/modelAnyOf.mustache
+++ b/modules/openapi-generator/src/main/resources/r/modelAnyOf.mustache
@@ -169,7 +169,7 @@
## Uncomment below to unlock the class to allow modifications of the method or field
#{{classname}}$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#{{classname}}$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/modules/openapi-generator/src/main/resources/r/modelGeneric.mustache b/modules/openapi-generator/src/main/resources/r/modelGeneric.mustache
index 451f41a5b42..a75dd49ae00 100644
--- a/modules/openapi-generator/src/main/resources/r/modelGeneric.mustache
+++ b/modules/openapi-generator/src/main/resources/r/modelGeneric.mustache
@@ -46,7 +46,7 @@
#' @param {{name}} {{#lambdaRdocEscape}}{{{description}}}{{/lambdaRdocEscape}}{{^description}}{{{name}}}{{/description}}{{#defaultValue}}. Default to {{{.}}}.{{/defaultValue}}
{{/optionalVars}}
{{#isAdditionalPropertiesTrue}}
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
{{/isAdditionalPropertiesTrue}}
#' @param ... Other optional arguments.
#' @export
@@ -673,7 +673,7 @@
## Uncomment below to unlock the class to allow modifications of the method or field
# {{classname}}$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# {{classname}}$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/modules/openapi-generator/src/main/resources/r/modelOneOf.mustache b/modules/openapi-generator/src/main/resources/r/modelOneOf.mustache
index da27bdfb2d7..f692ca1288b 100644
--- a/modules/openapi-generator/src/main/resources/r/modelOneOf.mustache
+++ b/modules/openapi-generator/src/main/resources/r/modelOneOf.mustache
@@ -221,7 +221,7 @@
## Uncomment below to unlock the class to allow modifications of the method or field
#{{classname}}$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#{{classname}}$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/modules/openapi-generator/src/main/resources/rust-server/models.mustache b/modules/openapi-generator/src/main/resources/rust-server/models.mustache
index 30be5a54f35..f7b9c395a52 100644
--- a/modules/openapi-generator/src/main/resources/rust-server/models.mustache
+++ b/modules/openapi-generator/src/main/resources/rust-server/models.mustache
@@ -12,7 +12,7 @@ use crate::header;
{{/description}}
{{#isEnum}}
/// Enumeration of values.
-/// Since this enum's variants do not hold data, we can easily define them them as `#[repr(C)]`
+/// Since this enum's variants do not hold data, we can easily define them as `#[repr(C)]`
/// which helps with FFI.
#[allow(non_camel_case_types)]
#[repr(C)]
diff --git a/modules/openapi-generator/src/main/resources/scala-akka-client/apiInvoker.mustache b/modules/openapi-generator/src/main/resources/scala-akka-client/apiInvoker.mustache
index ae815e21c63..13a3e6d0e96 100644
--- a/modules/openapi-generator/src/main/resources/scala-akka-client/apiInvoker.mustache
+++ b/modules/openapi-generator/src/main/resources/scala-akka-client/apiInvoker.mustache
@@ -39,7 +39,7 @@ object ApiInvoker {
* Allows request execution without calling apiInvoker.execute(request)
* request.response can be used to get a future of the ApiResponse generated.
* request.result can be used to get a future of the expected ApiResponse content. If content doesn't match, a
- * Future will failed with a ClassCastException
+ * Future will fail with a ClassCastException
*
* @param request the apiRequest to be executed
*/
diff --git a/modules/openapi-generator/src/main/resources/scalatra/web.xml b/modules/openapi-generator/src/main/resources/scalatra/web.xml
index bf99b058082..3003f2941be 100644
--- a/modules/openapi-generator/src/main/resources/scalatra/web.xml
+++ b/modules/openapi-generator/src/main/resources/scalatra/web.xml
@@ -7,7 +7,7 @@
diff --git a/modules/openapi-generator/src/main/resources/swift5/APIHelper.mustache b/modules/openapi-generator/src/main/resources/swift5/APIHelper.mustache
index 19763896035..95cf790b280 100644
--- a/modules/openapi-generator/src/main/resources/swift5/APIHelper.mustache
+++ b/modules/openapi-generator/src/main/resources/swift5/APIHelper.mustache
@@ -65,7 +65,7 @@ import Vapor{{/useVapor}}
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
{{#nonPublicApi}}internal{{/nonPublicApi}}{{^nonPublicApi}}public{{/nonPublicApi}} static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/modules/openapi-generator/src/main/resources/swift5/api.mustache b/modules/openapi-generator/src/main/resources/swift5/api.mustache
index 8ae155fc073..4efc57d9e34 100644
--- a/modules/openapi-generator/src/main/resources/swift5/api.mustache
+++ b/modules/openapi-generator/src/main/resources/swift5/api.mustache
@@ -284,7 +284,7 @@ extension {{projectName}}API {
defaultResponse: {{.}}{{/defaultResponse}}
{{#authMethods}}
- {{#isBasic}}BASIC{{/isBasic}}{{#isOAuth}}OAuth{{/isOAuth}}{{#isApiKey}}API Key{{/isApiKey}}:
- - type: {{type}}{{#keyParamName}} {{keyParamName}} {{#isKeyInQuery}}(QUERY){{/isKeyInQuery}}{{#isKeyInHeaer}}(HEADER){{/isKeyInHeaer}}{{/keyParamName}}
+ - type: {{type}}{{#keyParamName}} {{keyParamName}} {{#isKeyInQuery}}(QUERY){{/isKeyInQuery}}{{#isKeyInHeader}}(HEADER){{/isKeyInHeader}}{{/keyParamName}}
- name: {{name}}
{{/authMethods}}
{{#hasResponseHeaders}}
@@ -364,7 +364,7 @@ extension {{projectName}}API {
defaultResponse: {{.}}{{/defaultResponse}}
{{#authMethods}}
- {{#isBasic}}BASIC{{/isBasic}}{{#isOAuth}}OAuth{{/isOAuth}}{{#isApiKey}}API Key{{/isApiKey}}:
- - type: {{type}}{{#keyParamName}} {{keyParamName}} {{#isKeyInQuery}}(QUERY){{/isKeyInQuery}}{{#isKeyInHeaer}}(HEADER){{/isKeyInHeaer}}{{/keyParamName}}
+ - type: {{type}}{{#keyParamName}} {{keyParamName}} {{#isKeyInQuery}}(QUERY){{/isKeyInQuery}}{{#isKeyInHeader}}(HEADER){{/isKeyInHeader}}{{/keyParamName}}
- name: {{name}}
{{/authMethods}}
{{#hasResponseHeaders}}
@@ -408,7 +408,7 @@ extension {{projectName}}API {
- defaultResponse: {{.}}{{/defaultResponse}}
{{#authMethods}}
- {{#isBasic}}BASIC{{/isBasic}}{{#isOAuth}}OAuth{{/isOAuth}}{{#isApiKey}}API Key{{/isApiKey}}:
- - type: {{type}}{{#keyParamName}} {{keyParamName}} {{#isKeyInQuery}}(QUERY){{/isKeyInQuery}}{{#isKeyInHeaer}}(HEADER){{/isKeyInHeaer}}{{/keyParamName}}
+ - type: {{type}}{{#keyParamName}} {{keyParamName}} {{#isKeyInQuery}}(QUERY){{/isKeyInQuery}}{{#isKeyInHeader}}(HEADER){{/isKeyInHeader}}{{/keyParamName}}
- name: {{name}}
{{/authMethods}}
{{#hasResponseHeaders}}
diff --git a/modules/openapi-generator/src/main/resources/typescript-aurelia/README.md b/modules/openapi-generator/src/main/resources/typescript-aurelia/README.md
index 39a6c22b2e2..1475a466d64 100644
--- a/modules/openapi-generator/src/main/resources/typescript-aurelia/README.md
+++ b/modules/openapi-generator/src/main/resources/typescript-aurelia/README.md
@@ -27,7 +27,7 @@ npm run build
```
#### NPM ####
-You may publish the module to NPM. In this case, you would be able to install the module as any other NPM module. It maybe useful to use [scoped packages](https://docs.npmjs.com/misc/scope).
+You may publish the module to NPM. In this case, you would be able to install the module as any other NPM module. It may be useful to use [scoped packages](https://docs.npmjs.com/misc/scope).
You can also use `npm link` to link the module. However, this would not modify `package.json` of the installing project, as such you would need to relink every time you deploy that project.
diff --git a/modules/openapi-generator/src/main/resources/typescript-fetch/runtime.mustache b/modules/openapi-generator/src/main/resources/typescript-fetch/runtime.mustache
index 45e2a56434e..b47cf55c452 100644
--- a/modules/openapi-generator/src/main/resources/typescript-fetch/runtime.mustache
+++ b/modules/openapi-generator/src/main/resources/typescript-fetch/runtime.mustache
@@ -135,7 +135,7 @@ export class BaseAPI {
credentials: this.configuration.credentials,
};
- const overridedInit: RequestInit = {
+ const overriddenInit: RequestInit = {
...initParams,
...(await initOverrideFn({
init: initParams,
@@ -144,13 +144,13 @@ export class BaseAPI {
};
const init: RequestInit = {
- ...overridedInit,
+ ...overriddenInit,
body:
- isFormData(overridedInit.body) ||
- overridedInit.body instanceof URLSearchParams ||
- isBlob(overridedInit.body)
- ? overridedInit.body
- : JSON.stringify(overridedInit.body),
+ isFormData(overriddenInit.body) ||
+ overriddenInit.body instanceof URLSearchParams ||
+ isBlob(overriddenInit.body)
+ ? overriddenInit.body
+ : JSON.stringify(overriddenInit.body),
};
return { url, init };
diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java
index cfdc60aa0aa..593a45266b5 100644
--- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java
+++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/DefaultCodegenTest.java
@@ -4209,7 +4209,7 @@ public class DefaultCodegenTest {
Assert.assertNotNull(openAPI.getComponents().getSchemas().get(ModelUtils.getSimpleRef(requestBodySchema.get$ref())));
Schema requestBodySchema2 = ModelUtils.unaliasSchema(openAPI, requestBodySchema);
- // get$ref is not null as unaliasSchem returns the schema with the last $ref to the actual schema
+ // get$ref is not null as unaliasSchema returns the schema with the last $ref to the actual schema
Assert.assertNotNull(requestBodySchema2.get$ref());
Assert.assertEquals(requestBodySchema2.get$ref(), "#/components/schemas/updatePetWithForm_request");
diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/jaxrs/JavaJAXRSSpecServerCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/jaxrs/JavaJAXRSSpecServerCodegenTest.java
index 1fa2e72554c..7f5937ee7cb 100644
--- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/jaxrs/JavaJAXRSSpecServerCodegenTest.java
+++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/jaxrs/JavaJAXRSSpecServerCodegenTest.java
@@ -715,8 +715,8 @@ public class JavaJAXRSSpecServerCodegenTest extends JavaJaxrsBaseTest {
"\nprivate @Valid List arrayThatIsNull = null;\n");
//And the generated model contains correct default value for array properties (required, nullable)
- TestUtils.ensureContainsFile(files, output, "src/gen/java/org/openapitools/model/BodyWithRequiredNullalble.java");
- assertFileContains(output.toPath().resolve("src/gen/java/org/openapitools/model/BodyWithRequiredNullalble.java"),
+ TestUtils.ensureContainsFile(files, output, "src/gen/java/org/openapitools/model/BodyWithRequiredNullable.java");
+ assertFileContains(output.toPath().resolve("src/gen/java/org/openapitools/model/BodyWithRequiredNullable.java"),
"\nprivate @Valid List arrayThatIsNull = null;\n");
//And the generated model contains correct default value for array properties (required)
diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java
index bec4ee24ce1..d97a3c6ab44 100644
--- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java
+++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/java/spring/SpringCodegenTest.java
@@ -859,8 +859,8 @@ public class SpringCodegenTest {
assertFileContains(Paths.get(outputPath + "/src/main/java/org/openapitools/api/BearsApi.java"), "@PathVariable");
assertFileContains(Paths.get(outputPath + "/src/main/java/org/openapitools/api/CamelsApi.java"), "allowableValues = \"sleeping, awake\"");
assertFileContains(Paths.get(outputPath + "/src/main/java/org/openapitools/api/CamelsApi.java"), "@PathVariable");
- assertFileContains(Paths.get(outputPath + "/src/main/java/org/openapitools/api/GirafesApi.java"), "allowableValues = \"0, 1\"");
- assertFileContains(Paths.get(outputPath + "/src/main/java/org/openapitools/api/GirafesApi.java"), "@PathVariable");
+ assertFileContains(Paths.get(outputPath + "/src/main/java/org/openapitools/api/GiraffesApi.java"), "allowableValues = \"0, 1\"");
+ assertFileContains(Paths.get(outputPath + "/src/main/java/org/openapitools/api/GiraffesApi.java"), "@PathVariable");
}
@Test
diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/swift5/Swift5ModelEnumTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/swift5/Swift5ModelEnumTest.java
index 495e7ffa7d9..16493f7440b 100644
--- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/swift5/Swift5ModelEnumTest.java
+++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/swift5/Swift5ModelEnumTest.java
@@ -35,7 +35,7 @@ import java.util.Arrays;
@SuppressWarnings("static-method")
public class Swift5ModelEnumTest {
- @Test(description = "convert a java model with an string enum and a default value")
+ @Test(description = "convert a java model with a string enum and a default value")
public void convertStringDefaultValueTest() {
final StringSchema enumSchema = new StringSchema();
enumSchema.setEnum(Arrays.asList("VALUE1", "VALUE2", "VALUE3"));
@@ -59,7 +59,7 @@ public class Swift5ModelEnumTest {
Assert.assertTrue(enumVar.isEnum);
}
- @Test(description = "convert a java model with an reserved word string enum and a default value")
+ @Test(description = "convert a java model with a reserved word string enum and a default value")
public void convertReservedWordStringDefaultValueTest() {
final StringSchema enumSchema = new StringSchema();
enumSchema.setEnum(Arrays.asList("1st", "2nd", "3rd"));
@@ -107,7 +107,7 @@ public class Swift5ModelEnumTest {
Assert.assertTrue(enumVar.isEnum);
}
- @Test(description = "convert a java model with an number enum and a default value")
+ @Test(description = "convert a java model with a number enum and a default value")
public void convertNumberDefaultValueTest() {
final NumberSchema enumSchema = new NumberSchema();
enumSchema.setEnum(Arrays.asList(new BigDecimal(10), new BigDecimal(100), new BigDecimal(1000)));
diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/SharedTypeScriptTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/SharedTypeScriptTest.java
index cdd43b5b090..7a769cc8d19 100644
--- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/SharedTypeScriptTest.java
+++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/SharedTypeScriptTest.java
@@ -21,7 +21,7 @@ import static org.openapitools.codegen.typescript.TypeScriptGroups.*;
@Test(groups = {TYPESCRIPT})
public class SharedTypeScriptTest {
@Test
- public void typesInImportsAreSplittedTest() throws IOException {
+ public void typesInImportsAreSplitTest() throws IOException {
CodegenConfigurator config =
new CodegenConfigurator()
.setInputSpec("src/test/resources/split-import.json")
diff --git a/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/typescriptnode/TypeScriptNodeModelTest.java b/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/typescriptnode/TypeScriptNodeModelTest.java
index 42b7fbe1b42..23e342f4bc2 100644
--- a/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/typescriptnode/TypeScriptNodeModelTest.java
+++ b/modules/openapi-generator/src/test/java/org/openapitools/codegen/typescript/typescriptnode/TypeScriptNodeModelTest.java
@@ -297,7 +297,7 @@ public class TypeScriptNodeModelTest {
Assert.assertEquals(cm.additionalPropertiesType, "Array");
}
- @Test(description = "convert an string additional properties model")
+ @Test(description = "convert a string additional properties model")
public void arrayModelAdditionalPropertiesStringTest() {
final Schema schema = new Schema()
.description("a map model")
@@ -313,7 +313,7 @@ public class TypeScriptNodeModelTest {
Assert.assertEquals(cm.additionalPropertiesType, "string");
}
- @Test(description = "convert an complex additional properties model")
+ @Test(description = "convert a complex additional properties model")
public void arrayModelAdditionalPropertiesComplexTest() {
final Schema schema = new Schema()
.description("a map model")
diff --git a/modules/openapi-generator/src/test/resources/2_0/globalSecurity.json b/modules/openapi-generator/src/test/resources/2_0/globalSecurity.json
index 5cadaaa2bc2..efecc7ee6b4 100644
--- a/modules/openapi-generator/src/test/resources/2_0/globalSecurity.json
+++ b/modules/openapi-generator/src/test/resources/2_0/globalSecurity.json
@@ -471,7 +471,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"produces": [
"application/json",
diff --git a/modules/openapi-generator/src/test/resources/2_0/long_description_issue_7839.json b/modules/openapi-generator/src/test/resources/2_0/long_description_issue_7839.json
index 99265c90dce..e50678f6cdd 100644
--- a/modules/openapi-generator/src/test/resources/2_0/long_description_issue_7839.json
+++ b/modules/openapi-generator/src/test/resources/2_0/long_description_issue_7839.json
@@ -360,7 +360,7 @@
"get" : {
"tags" : [ "store" ],
"summary" : "Find purchase order by ID",
- "description" : "For valid response try integer IDs with value >= 1 and <= 10.\\ \\ Other values will generated exceptions",
+ "description" : "For valid response try integer IDs with value >= 1 and <= 10.\\ \\ Other values will generate exceptions",
"operationId" : "getOrderById",
"produces" : [ "application/json", "application/xml" ],
"parameters" : [ {
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-bash.json b/modules/openapi-generator/src/test/resources/2_0/petstore-bash.json
index 964b47418d0..cc93278ae86 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-bash.json
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-bash.json
@@ -512,7 +512,7 @@
"store"
],
"summary":"Find purchase order by ID",
- "description":"For valid response try integer IDs with value >= 1 and <= 10. Other values will generated exceptions",
+ "description":"For valid response try integer IDs with value >= 1 and <= 10. Other values will generate exceptions",
"operationId":"getOrderById",
"produces":[
"application/xml",
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-nullable.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-nullable.yaml
index 9a7e2e9c5f9..b68004726ed 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-nullable.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-nullable.yaml
@@ -323,7 +323,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-orig.json b/modules/openapi-generator/src/test/resources/2_0/petstore-orig.json
index 907bfd79113..9f868964935 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-orig.json
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-orig.json
@@ -471,7 +471,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"produces": [
"application/json",
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-proto.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-proto.yaml
index f6d9efaa4c9..77cbbb72c3b 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-proto.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-proto.yaml
@@ -325,7 +325,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-vendor-mime.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-vendor-mime.yaml
index 4bf2f04d968..118f66d37ac 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-vendor-mime.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-vendor-mime.yaml
@@ -319,7 +319,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-with-date-field.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-with-date-field.yaml
index 017e66b427e..28d56302b7b 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-with-date-field.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-with-date-field.yaml
@@ -314,7 +314,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-for-testing-playframework-with-security.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-for-testing-playframework-with-security.yaml
index be54ca6da2b..4ef75a199d3 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-for-testing-playframework-with-security.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-for-testing-playframework-with-security.yaml
@@ -109,7 +109,7 @@ paths:
securityDefinitions:
petstore_token:
type: oauth2
- description: security definition for using keycloak authentification with control site.
+ description: security definition for using keycloak authentication with control site.
authorizationUrl: https://keycloak-dev.business.stingray.com/auth/realms/CSLocal/protocol/openid-connect/auth
tokenUrl: https://keycloak-dev.business.stingray.com/auth/realms/CSLocal/protocol/openid-connect/token
x-jwksUrl: https://keycloak-dev.business.stingray.com/auth/realms/CSLocal/protocol/openid-connect/certs
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-saga-and-records.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-saga-and-records.yaml
index 29c48ddc0bd..babf447f2f1 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-saga-and-records.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-saga-and-records.yaml
@@ -511,7 +511,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-with-spring-pageable.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-with-spring-pageable.yaml
index ad0619d8219..3f8a66e2a1b 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-with-spring-pageable.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing-with-spring-pageable.yaml
@@ -329,7 +329,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
@@ -839,7 +839,7 @@ paths:
description: Integer in group parameters
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing.yaml
index 5c9ae2bab70..91aa8232ec2 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-with-fake-endpoints-models-for-testing.yaml
@@ -329,7 +329,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
@@ -837,7 +837,7 @@ paths:
description: Integer in group parameters
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-with-operations-without-required-params.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-with-operations-without-required-params.yaml
index a0b89db0313..cdc9e693f44 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-with-operations-without-required-params.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-with-operations-without-required-params.yaml
@@ -321,7 +321,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore-with-spring-pageable.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore-with-spring-pageable.yaml
index e102f7dc11f..9a1152bb06a 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore-with-spring-pageable.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore-with-spring-pageable.yaml
@@ -323,7 +323,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore.json b/modules/openapi-generator/src/test/resources/2_0/petstore.json
index 1eac6b45a4f..5deda4b94ce 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore.json
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore.json
@@ -482,7 +482,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"produces": [
"application/json",
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore.yaml b/modules/openapi-generator/src/test/resources/2_0/petstore.yaml
index 5cc2f3becb9..36a05a5f6fe 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore.yaml
@@ -321,7 +321,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/petstore_issue_7999.json b/modules/openapi-generator/src/test/resources/2_0/petstore_issue_7999.json
index 5a60bffefc5..c48c37f0f9a 100644
--- a/modules/openapi-generator/src/test/resources/2_0/petstore_issue_7999.json
+++ b/modules/openapi-generator/src/test/resources/2_0/petstore_issue_7999.json
@@ -482,7 +482,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"produces": [
"application/json",
diff --git a/modules/openapi-generator/src/test/resources/2_0/python-prior/petstore-with-fake-endpoints-models-for-testing.yaml b/modules/openapi-generator/src/test/resources/2_0/python-prior/petstore-with-fake-endpoints-models-for-testing.yaml
index 0fd88cfd5ae..2e7206f9114 100644
--- a/modules/openapi-generator/src/test/resources/2_0/python-prior/petstore-with-fake-endpoints-models-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/python-prior/petstore-with-fake-endpoints-models-for-testing.yaml
@@ -334,7 +334,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
@@ -842,7 +842,7 @@ paths:
description: Integer in group parameters
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/refs/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/2_0/rust-server/petstore-with-fake-endpoints-models-for-testing.yaml b/modules/openapi-generator/src/test/resources/2_0/rust-server/petstore-with-fake-endpoints-models-for-testing.yaml
index 8f081c09dc1..3595c5b5036 100644
--- a/modules/openapi-generator/src/test/resources/2_0/rust-server/petstore-with-fake-endpoints-models-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/rust-server/petstore-with-fake-endpoints-models-for-testing.yaml
@@ -321,7 +321,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
diff --git a/modules/openapi-generator/src/test/resources/2_0/rust-server/rust-server-test.yaml b/modules/openapi-generator/src/test/resources/2_0/rust-server/rust-server-test.yaml
index c7937795ced..49a5b961224 100644
--- a/modules/openapi-generator/src/test/resources/2_0/rust-server/rust-server-test.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/rust-server/rust-server-test.yaml
@@ -139,7 +139,7 @@ definitions:
baseAllOf:
type: object
properties:
- sampleBasePropery:
+ sampleBaseProperty:
type: string
aNullableContainer:
type: object
diff --git a/modules/openapi-generator/src/test/resources/2_0/swift/petstore-with-fake-endpoints-models-for-testing.yaml b/modules/openapi-generator/src/test/resources/2_0/swift/petstore-with-fake-endpoints-models-for-testing.yaml
index dac5c2a933a..27e1524dab4 100644
--- a/modules/openapi-generator/src/test/resources/2_0/swift/petstore-with-fake-endpoints-models-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/2_0/swift/petstore-with-fake-endpoints-models-for-testing.yaml
@@ -322,7 +322,7 @@ paths:
tags:
- store
summary: Find purchase order by ID
- description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions'
+ description: 'For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions'
operationId: getOrderById
produces:
- application/xml
@@ -830,7 +830,7 @@ paths:
description: Integer in group parameters
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/asciidoc/api-docs.json b/modules/openapi-generator/src/test/resources/3_0/asciidoc/api-docs.json
index 5c7b2ce7aeb..0ef296a8fb1 100644
--- a/modules/openapi-generator/src/test/resources/3_0/asciidoc/api-docs.json
+++ b/modules/openapi-generator/src/test/resources/3_0/asciidoc/api-docs.json
@@ -1340,7 +1340,7 @@
"example": "tlead1"
}
},
- "description": "a team member, could be project lead or an member with assigned tasks."
+ "description": "a team member, could be project lead or a member with assigned tasks."
},
"TaskWeek": {
"type": "object",
diff --git a/modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
index 183eccd90bb..c0ca877d6f9 100644
--- a/modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/aspnetcore/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/avro-schema/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/avro-schema/petstore.yaml
index 89461f2c975..65cc9bd313b 100644
--- a/modules/openapi-generator/src/test/resources/3_0/avro-schema/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/avro-schema/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/cpp-qt/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/cpp-qt/petstore.yaml
index bf8072432a3..0d98a3be3c9 100644
--- a/modules/openapi-generator/src/test/resources/3_0/cpp-qt/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/cpp-qt/petstore.yaml
@@ -326,7 +326,7 @@ paths:
- store
summary: Find purchase order by ID
description: For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/crystal/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/crystal/petstore.yaml
index 002eaa2e8ef..385b3e0e5e7 100644
--- a/modules/openapi-generator/src/test/resources/3_0/crystal/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/crystal/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/csharp-netcore/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/csharp-netcore/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index afd5a8a62b7..8f2b63eefe9 100644
--- a/modules/openapi-generator/src/test/resources/3_0/csharp-netcore/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/csharp-netcore/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -374,7 +374,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -859,7 +859,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index 7695348b208..677a8ad31fb 100644
--- a/modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/csharp/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -337,7 +337,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -822,7 +822,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/elm.yaml b/modules/openapi-generator/src/test/resources/3_0/elm.yaml
index 13dde8a9839..162d9b97612 100644
--- a/modules/openapi-generator/src/test/resources/3_0/elm.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/elm.yaml
@@ -160,7 +160,7 @@ components:
type: array
items:
type: string
- arrayOfPrimitve:
+ arrayOfPrimitive:
type: array
items:
$ref: "#/components/schemas/Primitive"
diff --git a/modules/openapi-generator/src/test/resources/3_0/go/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/go/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index 4c7ed5960e1..b9bfe5a8ff9 100644
--- a/modules/openapi-generator/src/test/resources/3_0/go/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/go/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -355,7 +355,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -838,9 +838,9 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
'5XX':
- description: Someting wrong
+ description: Something wrong
content:
'applicatino/json':
schema:
diff --git a/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-for-testing.yaml b/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-for-testing.yaml
index 4219f4004a2..aa139e06290 100644
--- a/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-for-testing.yaml
@@ -341,7 +341,7 @@ paths:
multipart/form-data:
schema:
$ref: '#/components/schemas/PetsForm'
- description: Object that that contains info about pets
+ description: Object that contains info about pets
required: true
responses:
'200':
@@ -402,7 +402,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-no-multipart-for-testing.yaml b/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-no-multipart-for-testing.yaml
index 3a10351b615..012fecfb64d 100644
--- a/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-no-multipart-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/helidon/petstore-no-multipart-for-testing.yaml
@@ -331,7 +331,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/inline_model_resolver.yaml b/modules/openapi-generator/src/test/resources/3_0/inline_model_resolver.yaml
index 0741d3b5d77..7f1d9bdd1dd 100644
--- a/modules/openapi-generator/src/test/resources/3_0/inline_model_resolver.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/inline_model_resolver.yaml
@@ -293,7 +293,7 @@ paths:
type: object
/empty_example_on_string_models:
get:
- operationId: emptyExampleoOnStringTypeModels
+ operationId: emptyExampleOnStringTypeModels
responses:
'200':
description: OK
diff --git a/modules/openapi-generator/src/test/resources/3_0/issue_11772.yml b/modules/openapi-generator/src/test/resources/3_0/issue_11772.yml
index 98737ae11f8..7c1d941613f 100644
--- a/modules/openapi-generator/src/test/resources/3_0/issue_11772.yml
+++ b/modules/openapi-generator/src/test/resources/3_0/issue_11772.yml
@@ -200,7 +200,7 @@ components:
x-field-extra-annotation: |-
@org.springframework.data.annotation.LastModifiedDate
modifiedBy:
- description: The employee id (Kerberos) of the user that last modifed the project.
+ description: The employee id (Kerberos) of the user that last modified the project.
type: string
example: janedoe
x-field-extra-annotation: |-
diff --git a/modules/openapi-generator/src/test/resources/3_0/issue_13025.yaml b/modules/openapi-generator/src/test/resources/3_0/issue_13025.yaml
index 40cf1c1ed07..09e2f240cbb 100644
--- a/modules/openapi-generator/src/test/resources/3_0/issue_13025.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/issue_13025.yaml
@@ -23,7 +23,7 @@ components:
nullable: true
items:
type: string
- BodyWithRequiredNullalble:
+ BodyWithRequiredNullable:
type: object
required:
- arrayThatIsNull
diff --git a/modules/openapi-generator/src/test/resources/3_0/issue_3248.yaml b/modules/openapi-generator/src/test/resources/3_0/issue_3248.yaml
index 701447d9f67..19d32b47180 100644
--- a/modules/openapi-generator/src/test/resources/3_0/issue_3248.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/issue_3248.yaml
@@ -23,9 +23,9 @@ paths:
schema:
type: string
format: date
- /girafes:
+ /giraffes:
get:
- operationId: getGirafes
+ operationId: getGiraffes
parameters:
- $ref: '#/components/parameters/refStatus'
/zebras:
diff --git a/modules/openapi-generator/src/test/resources/3_0/issue_5381.yaml b/modules/openapi-generator/src/test/resources/3_0/issue_5381.yaml
index 192c958f724..d37c8a79fba 100644
--- a/modules/openapi-generator/src/test/resources/3_0/issue_5381.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/issue_5381.yaml
@@ -61,7 +61,7 @@ components:
id:
type: string
description: unique identifier
- description: Base schema for adressable entities
+ description: Base schema for addressable entities
Extensible:
type: object
properties:
diff --git a/modules/openapi-generator/src/test/resources/3_0/issue_6762.yaml b/modules/openapi-generator/src/test/resources/3_0/issue_6762.yaml
index 9df77efc7f9..c14a34b39af 100644
--- a/modules/openapi-generator/src/test/resources/3_0/issue_6762.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/issue_6762.yaml
@@ -8,9 +8,9 @@ info:
name: Apache-2.0
url: 'https://www.apache.org/licenses/LICENSE-2.0.html'
paths:
- /girafes/{refStatus}:
+ /giraffes/{refStatus}:
get:
- operationId: getGirafes
+ operationId: getGiraffes
parameters:
- $ref: '#/components/parameters/refStatus'
/zebras/{status}:
diff --git a/modules/openapi-generator/src/test/resources/3_0/issue_7361.yaml b/modules/openapi-generator/src/test/resources/3_0/issue_7361.yaml
index 778a7f451fe..93cdc902ec7 100644
--- a/modules/openapi-generator/src/test/resources/3_0/issue_7361.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/issue_7361.yaml
@@ -11,7 +11,7 @@ paths: {}
components:
schemas:
FreeForm:
- description: this will not be generated because a map will be used when othe components or endpoints ref this schema
+ description: this will not be generated because a map will be used when other components or endpoints ref this schema
type: object
FreeFormInterface:
type: object
diff --git a/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature-okhttp-gson.yaml b/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature-okhttp-gson.yaml
index f0f4fa1da3a..2e4c2170204 100644
--- a/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature-okhttp-gson.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature-okhttp-gson.yaml
@@ -337,7 +337,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -822,7 +822,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index 455a11dbe59..7c0f833e2f9 100644
--- a/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/java/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -337,7 +337,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -822,7 +822,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/javascript/petstore-with-fake-endpoints-models-for-testing.yaml b/modules/openapi-generator/src/test/resources/3_0/javascript/petstore-with-fake-endpoints-models-for-testing.yaml
index fadeb02edb7..cac52823a43 100644
--- a/modules/openapi-generator/src/test/resources/3_0/javascript/petstore-with-fake-endpoints-models-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/javascript/petstore-with-fake-endpoints-models-for-testing.yaml
@@ -348,7 +348,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -837,7 +837,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/kotlin/reserved_words.yaml b/modules/openapi-generator/src/test/resources/3_0/kotlin/reserved_words.yaml
index d5074fd953c..540607bb157 100644
--- a/modules/openapi-generator/src/test/resources/3_0/kotlin/reserved_words.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/kotlin/reserved_words.yaml
@@ -214,7 +214,7 @@ components:
$ref: '#/components/schemas/Linked'
Linked:
- description: Refernce links
+ description: Reference links
type: object
properties:
as:
diff --git a/modules/openapi-generator/src/test/resources/3_0/mapSchemas.yaml b/modules/openapi-generator/src/test/resources/3_0/mapSchemas.yaml
index b57ee87455d..61338df8954 100644
--- a/modules/openapi-generator/src/test/resources/3_0/mapSchemas.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/mapSchemas.yaml
@@ -27,7 +27,7 @@ components:
properties:
id:
type: string
- withAdditinalProperties:
+ withAdditionalProperties:
$ref: '#/components/schemas/ModelWithAdditionalProperties'
ModelWithAdditionalProperties:
type: object
diff --git a/modules/openapi-generator/src/test/resources/3_0/micronaut/roles-extension-test.yaml b/modules/openapi-generator/src/test/resources/3_0/micronaut/roles-extension-test.yaml
index 1fa23eb9f62..8ec596652ad 100644
--- a/modules/openapi-generator/src/test/resources/3_0/micronaut/roles-extension-test.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/micronaut/roles-extension-test.yaml
@@ -8,7 +8,7 @@ info:
url: 'https://www.apache.org/licenses/LICENSE-2.0.html'
tags:
- {name: books, description: Everything about books}
- - {name: users, description: Everyting about users}
+ - {name: users, description: Everything about users}
- {name: reviews, description: Everything related to book reviews}
paths:
/book/{bookName}:
diff --git a/modules/openapi-generator/src/test/resources/3_0/oneof_polymorphism_and_inheritance.yaml b/modules/openapi-generator/src/test/resources/3_0/oneof_polymorphism_and_inheritance.yaml
index dc916b1ee21..b3f6990de5c 100644
--- a/modules/openapi-generator/src/test/resources/3_0/oneof_polymorphism_and_inheritance.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/oneof_polymorphism_and_inheritance.yaml
@@ -60,7 +60,7 @@ components:
id:
type: string
description: unique identifier
- description: Base schema for adressable entities
+ description: Base schema for addressable entities
Extensible:
type: object
properties:
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore-with-complex-headers.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore-with-complex-headers.yaml
index daf9e82cf1d..2b8d0a7f5f8 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore-with-complex-headers.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore-with-complex-headers.yaml
@@ -333,7 +333,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore-with-depreacted-fields.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore-with-deprecated-fields.yaml
similarity index 99%
rename from modules/openapi-generator/src/test/resources/3_0/petstore-with-depreacted-fields.yaml
rename to modules/openapi-generator/src/test/resources/3_0/petstore-with-deprecated-fields.yaml
index b88deaac3ee..0cc32cc1ad4 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore-with-depreacted-fields.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore-with-deprecated-fields.yaml
@@ -316,7 +316,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index 31b34ae4e19..68c92decbc3 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -355,7 +355,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -838,7 +838,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml
index 4ff88061222..2401e56127f 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore-with-fake-endpoints-models-for-testing.yaml
@@ -363,7 +363,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -852,7 +852,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore-with-nullable-required.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore-with-nullable-required.yaml
index e0471993d5d..9196cafcafe 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore-with-nullable-required.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore-with-nullable-required.yaml
@@ -316,7 +316,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore-with-object-as-parameter.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore-with-object-as-parameter.yaml
index 86e397c820b..5020c07cede 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore-with-object-as-parameter.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore-with-object-as-parameter.yaml
@@ -324,7 +324,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore.json b/modules/openapi-generator/src/test/resources/3_0/petstore.json
index 1873cd6516f..7d07119f535 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore.json
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore.json
@@ -497,7 +497,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"parameters": [
{
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore.yaml
index 9184e9c8064..0971c554414 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/petstore_oas3_test.yaml b/modules/openapi-generator/src/test/resources/3_0/petstore_oas3_test.yaml
index d57fd4e4f08..0b4c9927c36 100644
--- a/modules/openapi-generator/src/test/resources/3_0/petstore_oas3_test.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/petstore_oas3_test.yaml
@@ -319,7 +319,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/powershell/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/powershell/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index a2e2981e696..50056d0d050 100644
--- a/modules/openapi-generator/src/test/resources/3_0/powershell/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/powershell/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -338,7 +338,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -823,7 +823,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/outer/number:
post:
tags:
diff --git a/modules/openapi-generator/src/test/resources/3_0/powershell/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/powershell/petstore.yaml
index 025d072c763..8f1ab1c858b 100644
--- a/modules/openapi-generator/src/test/resources/3_0/powershell/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/powershell/petstore.yaml
@@ -356,7 +356,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/protobuf/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/protobuf/petstore.yaml
index 3db600f31eb..67a1d25efb6 100644
--- a/modules/openapi-generator/src/test/resources/3_0/protobuf/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/protobuf/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/python-prior/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/python-prior/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index 8d040105b98..d6b0336a753 100644
--- a/modules/openapi-generator/src/test/resources/3_0/python-prior/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/python-prior/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -300,7 +300,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -787,7 +787,7 @@ paths:
format: int64
responses:
'400':
- description: Someting wrong
+ description: Something wrong
/fake/refs/number:
post:
tags:
@@ -2290,7 +2290,7 @@ components:
- $ref: '#/components/schemas/banana'
fruitReq:
description: a schema where additionalProperties is on in the composed schema and off in the oneOf object schemas
- also, this schem accepts null as a value
+ also, this scheme accepts null as a value
oneOf:
- type: 'null'
- $ref: '#/components/schemas/appleReq'
diff --git a/modules/openapi-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml b/modules/openapi-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
index f6c3f327b18..e5b0be96330 100644
--- a/modules/openapi-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/python/petstore-with-fake-endpoints-models-for-testing-with-http-signature.yaml
@@ -338,7 +338,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: order_id
@@ -1130,7 +1130,7 @@ paths:
put:
tags:
- fake
- description: Ensures that original naming is used in endpoint params, that way we on't have collisions
+ description: Ensures that original naming is used in endpoint params, that way we won't have collisions
operationId: CaseSensitiveParams
parameters:
- name: someVar
@@ -1151,7 +1151,7 @@ paths:
responses:
"200":
description: Success
- /fake/test-query-paramters:
+ /fake/test-query-parameters:
put:
tags:
- fake
diff --git a/modules/openapi-generator/src/test/resources/3_0/r/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/r/petstore.yaml
index 86ef6839356..fcddaaa8d60 100644
--- a/modules/openapi-generator/src/test/resources/3_0/r/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/r/petstore.yaml
@@ -398,7 +398,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/response-tests.yaml b/modules/openapi-generator/src/test/resources/3_0/response-tests.yaml
index e17881606db..768bd2f8e8f 100644
--- a/modules/openapi-generator/src/test/resources/3_0/response-tests.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/response-tests.yaml
@@ -300,7 +300,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/rust-server/no-example-v3.yaml b/modules/openapi-generator/src/test/resources/3_0/rust-server/no-example-v3.yaml
index 8c9e737c1ed..cd9585a9db5 100644
--- a/modules/openapi-generator/src/test/resources/3_0/rust-server/no-example-v3.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/rust-server/no-example-v3.yaml
@@ -14,7 +14,7 @@ paths:
schema:
type: object
properties:
- propery:
+ property:
type: string
required:
- property
diff --git a/modules/openapi-generator/src/test/resources/3_0/rust/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/rust/petstore.yaml
index 0c09dee9414..e72f1e21e95 100644
--- a/modules/openapi-generator/src/test/resources/3_0/rust/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/rust/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/scala-akka/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/scala-akka/petstore.yaml
index 1b354403e94..261eafdaac2 100644
--- a/modules/openapi-generator/src/test/resources/3_0/scala-akka/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/scala-akka/petstore.yaml
@@ -336,7 +336,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/scala/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/scala/petstore.yaml
index 7087e8c5d36..2f62e97a375 100644
--- a/modules/openapi-generator/src/test/resources/3_0/scala/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/scala/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/schema-unalias-test.yml b/modules/openapi-generator/src/test/resources/3_0/schema-unalias-test.yml
index ea757d8f08f..f802e344717 100644
--- a/modules/openapi-generator/src/test/resources/3_0/schema-unalias-test.yml
+++ b/modules/openapi-generator/src/test/resources/3_0/schema-unalias-test.yml
@@ -37,7 +37,7 @@ components:
properties:
visitDate:
default: 1971-12-19T03:39:57-08:00
- description: Updated last vist timestamp
+ description: Updated last visit timestamp
format: date-time
type: string
type: object
diff --git a/modules/openapi-generator/src/test/resources/3_0/server-required.yaml b/modules/openapi-generator/src/test/resources/3_0/server-required.yaml
index b6458d3da14..33dd9ce64b3 100644
--- a/modules/openapi-generator/src/test/resources/3_0/server-required.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/server-required.yaml
@@ -334,7 +334,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_0/spring/date-time-parameter-types-for-testing.yml b/modules/openapi-generator/src/test/resources/3_0/spring/date-time-parameter-types-for-testing.yml
index f3568d0c3ee..535d152fc96 100644
--- a/modules/openapi-generator/src/test/resources/3_0/spring/date-time-parameter-types-for-testing.yml
+++ b/modules/openapi-generator/src/test/resources/3_0/spring/date-time-parameter-types-for-testing.yml
@@ -28,7 +28,7 @@ paths:
type: object
properties:
visitDate:
- description: Updated last vist timestamp
+ description: Updated last visit timestamp
type: string
default: '1971-12-19T03:39:57-08:00'
format: date-time
diff --git a/modules/openapi-generator/src/test/resources/3_0/unit_test_spec/3_0_3_unit_test_spec.yaml b/modules/openapi-generator/src/test/resources/3_0/unit_test_spec/3_0_3_unit_test_spec.yaml
index 053751510ff..8d4632ac976 100644
--- a/modules/openapi-generator/src/test/resources/3_0/unit_test_spec/3_0_3_unit_test_spec.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/unit_test_spec/3_0_3_unit_test_spec.yaml
@@ -4659,7 +4659,7 @@ components:
foo: []
bar: {}
valid: false
- DoesnTInvalidateOtherProperties:
+ DoesntInvalidateOtherProperties:
description: doesn't invalidate other properties
data:
quux: []
diff --git a/modules/openapi-generator/src/test/resources/3_0/wsdl/petstore.yaml b/modules/openapi-generator/src/test/resources/3_0/wsdl/petstore.yaml
index deb33e89a36..85482061ee3 100644
--- a/modules/openapi-generator/src/test/resources/3_0/wsdl/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_0/wsdl/petstore.yaml
@@ -353,7 +353,7 @@ paths:
- store
summary: Find purchase order by ID
description: For valid response try integer IDs with value >= 1 and <= 10. Other
- values will generated exceptions
+ values will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/3_1/petstore.yaml b/modules/openapi-generator/src/test/resources/3_1/petstore.yaml
index 6e83b7fdc24..6c6de61d69b 100644
--- a/modules/openapi-generator/src/test/resources/3_1/petstore.yaml
+++ b/modules/openapi-generator/src/test/resources/3_1/petstore.yaml
@@ -335,7 +335,7 @@ paths:
summary: Find purchase order by ID
description: >-
For valid response try integer IDs with value <= 5 or > 10. Other values
- will generated exceptions
+ will generate exceptions
operationId: getOrderById
parameters:
- name: orderId
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/api.ts b/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/api.ts
index 76bf4cba40a..b1217b60710 100644
--- a/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/api.ts
+++ b/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-expected/api.ts
@@ -537,7 +537,7 @@ export class StoreApi {
}
/**
* 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
*/
public getOrderById (orderId: string) : Promise<{ response: http.IncomingMessage; body: Order; }> {
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-spec.json b/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-spec.json
index 12fde32b768..56cc763e463 100644
--- a/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-spec.json
+++ b/modules/openapi-generator/src/test/resources/integrationtests/typescript/node-es5-spec.json
@@ -318,7 +318,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"produces": [
"application/json",
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/api/store.service.ts b/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/api/store.service.ts
index 374f8f02e75..e6256586bf9 100644
--- a/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/api/store.service.ts
+++ b/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-expected/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-spec.json b/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-spec.json
index 2120a1a2f4e..2276e57c1f8 100644
--- a/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-spec.json
+++ b/modules/openapi-generator/src/test/resources/integrationtests/typescript/petstore-spec.json
@@ -486,7 +486,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"produces": [
"application/xml",
diff --git a/modules/openapi-generator/src/test/resources/petstore.json b/modules/openapi-generator/src/test/resources/petstore.json
index 1af2d2ae3ee..ad5523181b6 100644
--- a/modules/openapi-generator/src/test/resources/petstore.json
+++ b/modules/openapi-generator/src/test/resources/petstore.json
@@ -471,7 +471,7 @@
"store"
],
"summary": "Find purchase order by ID",
- "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ "description": "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
"operationId": "getOrderById",
"produces": [
"application/json",
diff --git a/samples/client/others/csharp-netcore-complex-files/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/others/csharp-netcore-complex-files/src/Org.OpenAPITools/Client/RequestOptions.cs
index 7f440630dd5..9b17590f129 100644
--- a/samples/client/others/csharp-netcore-complex-files/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/others/csharp-netcore-complex-files/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/R-httr2-wrapper/.openapi-generator-ignore b/samples/client/petstore/R-httr2-wrapper/.openapi-generator-ignore
index c5fa491b4c5..deed424f8a1 100644
--- a/samples/client/petstore/R-httr2-wrapper/.openapi-generator-ignore
+++ b/samples/client/petstore/R-httr2-wrapper/.openapi-generator-ignore
@@ -5,7 +5,7 @@
# The patterns follow closely to .gitignore or .dockerignore.
# As an example, the C# client generator defines ApiClient.cs.
-# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
+# You can make changes and tell Swagger Codegen to ignore just this file by uncommenting the following line:
#ApiClient.cs
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
diff --git a/samples/client/petstore/R-httr2-wrapper/R/allof_tag_api_response.R b/samples/client/petstore/R-httr2-wrapper/R/allof_tag_api_response.R
index 220d89ee503..7cfd85917e9 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/allof_tag_api_response.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/allof_tag_api_response.R
@@ -37,7 +37,7 @@ AllofTagApiResponse <- R6::R6Class(
#' @param code code
#' @param type type
#' @param message message
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `name` = NULL, `code` = NULL, `type` = NULL, `message` = NULL, additional_properties = NULL, ...) {
@@ -286,7 +286,7 @@ AllofTagApiResponse <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# AllofTagApiResponse$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# AllofTagApiResponse$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/animal.R b/samples/client/petstore/R-httr2-wrapper/R/animal.R
index b506bced42f..a1689f8394f 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/animal.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/animal.R
@@ -30,7 +30,7 @@ Animal <- R6::R6Class(
#'
#' @param className className
#' @param color color. Default to "red".
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color` = "red", additional_properties = NULL, ...) {
@@ -231,7 +231,7 @@ Animal <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Animal$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Animal$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/any_of_pig.R b/samples/client/petstore/R-httr2-wrapper/R/any_of_pig.R
index 64e859d560b..34736dc7f38 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/any_of_pig.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/any_of_pig.R
@@ -174,7 +174,7 @@ AnyOfPig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#AnyOfPig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#AnyOfPig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/any_of_primitive_type_test.R b/samples/client/petstore/R-httr2-wrapper/R/any_of_primitive_type_test.R
index da1e53ce472..c34326a3161 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/any_of_primitive_type_test.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/any_of_primitive_type_test.R
@@ -193,7 +193,7 @@ AnyOfPrimitiveTypeTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#AnyOfPrimitiveTypeTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#AnyOfPrimitiveTypeTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/api_client.R b/samples/client/petstore/R-httr2-wrapper/R/api_client.R
index 3ca3cf9ce7f..5ad09ce50e0 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/api_client.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/api_client.R
@@ -163,7 +163,7 @@ ApiClient <- R6::R6Class(
#' @param header_params The header parameters.
#' @param form_params The form parameters.
#' @param file_params The form parameters to upload files.
- #' @param accepts The HTTP accpet headers.
+ #' @param accepts The HTTP accept headers.
#' @param content_types The HTTP content-type headers.
#' @param body The HTTP request body.
#' @param is_oauth True if the endpoints required OAuth authentication.
@@ -194,7 +194,7 @@ ApiClient <- R6::R6Class(
#' @param header_params The header parameters.
#' @param form_params The form parameters.
#' @param file_params The form parameters for uploading files.
- #' @param accepts The HTTP accpet headers.
+ #' @param accepts The HTTP accept headers.
#' @param content_types The HTTP content-type headers.
#' @param body The HTTP request body.
#' @param is_oauth True if the endpoints required OAuth authentication.
@@ -405,10 +405,10 @@ ApiClient <- R6::R6Class(
}
return_obj
},
- #' Return a propery header (for accept or content-type).
+ #' Return a property header (for accept or content-type).
#'
#' @description
- #' Return a propery header (for accept or content-type). If JSON-related MIME is found,
+ #' Return a property header (for accept or content-type). If JSON-related MIME is found,
#' return it. Otherwise, return the first one, if any.
#'
#' @param headers A list of headers
diff --git a/samples/client/petstore/R-httr2-wrapper/R/api_response.R b/samples/client/petstore/R-httr2-wrapper/R/api_response.R
index 70431ae7e58..6cff851aed4 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/api_response.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/api_response.R
@@ -12,7 +12,7 @@
#' @field content The deserialized response body.
#' @field response The raw response from the endpoint.
#' @field status_code The HTTP response status code.
-#' @field status_code_desc The brief descriptoin of the HTTP response status code.
+#' @field status_code_desc The brief description of the HTTP response status code.
#' @field headers The HTTP response headers.
#' @export
ApiResponse <- R6::R6Class(
diff --git a/samples/client/petstore/R-httr2-wrapper/R/basque_pig.R b/samples/client/petstore/R-httr2-wrapper/R/basque_pig.R
index ac83042c8cf..048bff78e75 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/basque_pig.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/basque_pig.R
@@ -28,7 +28,7 @@ BasquePig <- R6::R6Class(
#'
#' @param className className
#' @param color color
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color`, additional_properties = NULL, ...) {
@@ -247,7 +247,7 @@ BasquePig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# BasquePig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# BasquePig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/cat.R b/samples/client/petstore/R-httr2-wrapper/R/cat.R
index f74e2d887dd..9198500c01a 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/cat.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/cat.R
@@ -32,7 +32,7 @@ Cat <- R6::R6Class(
#' @param className className
#' @param color color. Default to "red".
#' @param declawed declawed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color` = "red", `declawed` = NULL, additional_properties = NULL, ...) {
@@ -255,7 +255,7 @@ Cat <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Cat$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Cat$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/cat_all_of.R b/samples/client/petstore/R-httr2-wrapper/R/cat_all_of.R
index 197e1a46e3a..d25992a7878 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/cat_all_of.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/cat_all_of.R
@@ -25,7 +25,7 @@ CatAllOf <- R6::R6Class(
#' Initialize a new CatAllOf class.
#'
#' @param declawed declawed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`declawed` = NULL, additional_properties = NULL, ...) {
@@ -186,7 +186,7 @@ CatAllOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# CatAllOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# CatAllOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/category.R b/samples/client/petstore/R-httr2-wrapper/R/category.R
index 2646d01bd72..175b3cbb9ae 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/category.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/category.R
@@ -28,7 +28,7 @@ Category <- R6::R6Class(
#'
#' @param id id
#' @param name name
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `name` = NULL, additional_properties = NULL, ...) {
@@ -219,7 +219,7 @@ Category <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Category$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Category$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/danish_pig.R b/samples/client/petstore/R-httr2-wrapper/R/danish_pig.R
index 06cf5096a88..627bd413163 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/danish_pig.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/danish_pig.R
@@ -28,7 +28,7 @@ DanishPig <- R6::R6Class(
#'
#' @param className className
#' @param size size
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `size`, additional_properties = NULL, ...) {
@@ -247,7 +247,7 @@ DanishPig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# DanishPig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# DanishPig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/date.R b/samples/client/petstore/R-httr2-wrapper/R/date.R
index 79945bc8cfc..3299b6658ad 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/date.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/date.R
@@ -31,7 +31,7 @@ Date <- R6::R6Class(
#' @param className className
#' @param url_property url_property
#' @param percent_description using \% in the description
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `url_property`, `percent_description` = NULL, additional_properties = NULL, ...) {
@@ -288,7 +288,7 @@ Date <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Date$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Date$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/dog.R b/samples/client/petstore/R-httr2-wrapper/R/dog.R
index a814c57d586..068eec8eca8 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/dog.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/dog.R
@@ -32,7 +32,7 @@ Dog <- R6::R6Class(
#' @param className className
#' @param color color. Default to "red".
#' @param breed breed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color` = "red", `breed` = NULL, additional_properties = NULL, ...) {
@@ -255,7 +255,7 @@ Dog <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Dog$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Dog$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/dog_all_of.R b/samples/client/petstore/R-httr2-wrapper/R/dog_all_of.R
index 17608478eed..d35a85abbb5 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/dog_all_of.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/dog_all_of.R
@@ -25,7 +25,7 @@ DogAllOf <- R6::R6Class(
#' Initialize a new DogAllOf class.
#'
#' @param breed breed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`breed` = NULL, additional_properties = NULL, ...) {
@@ -186,7 +186,7 @@ DogAllOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# DogAllOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# DogAllOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/format_test.R b/samples/client/petstore/R-httr2-wrapper/R/format_test.R
index 4bd74e3a727..85894ec7b1f 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/format_test.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/format_test.R
@@ -67,7 +67,7 @@ FormatTest <- R6::R6Class(
#' @param uuid uuid
#' @param pattern_with_digits A string that is a 10 digit number. Can have leading zeros.
#' @param pattern_with_digits_and_delimiter A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01.
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`number`, `byte`, `date`, `password`, `integer` = NULL, `int32` = NULL, `int64` = NULL, `float` = NULL, `double` = NULL, `string` = NULL, `binary` = NULL, `dateTime` = "2015-10-28T14:38:02Z", `uuid` = NULL, `pattern_with_digits` = NULL, `pattern_with_digits_and_delimiter` = NULL, additional_properties = NULL, ...) {
@@ -701,7 +701,7 @@ FormatTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# FormatTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# FormatTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/mammal.R b/samples/client/petstore/R-httr2-wrapper/R/mammal.R
index c9dd60c3e7c..b96d79926ca 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/mammal.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/mammal.R
@@ -217,7 +217,7 @@ Mammal <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#Mammal$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#Mammal$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/model_api_response.R b/samples/client/petstore/R-httr2-wrapper/R/model_api_response.R
index b0e4bbba7e9..028c66c7230 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/model_api_response.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/model_api_response.R
@@ -31,7 +31,7 @@ ModelApiResponse <- R6::R6Class(
#' @param code code
#' @param type type
#' @param message message
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`code` = NULL, `type` = NULL, `message` = NULL, additional_properties = NULL, ...) {
@@ -236,7 +236,7 @@ ModelApiResponse <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# ModelApiResponse$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# ModelApiResponse$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/nested_one_of.R b/samples/client/petstore/R-httr2-wrapper/R/nested_one_of.R
index 73f4e938cbd..d2a670b4edd 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/nested_one_of.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/nested_one_of.R
@@ -28,7 +28,7 @@ NestedOneOf <- R6::R6Class(
#'
#' @param size size
#' @param nested_pig nested_pig
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`size` = NULL, `nested_pig` = NULL, additional_properties = NULL, ...) {
@@ -211,7 +211,7 @@ NestedOneOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# NestedOneOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# NestedOneOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/one_of_primitive_type_test.R b/samples/client/petstore/R-httr2-wrapper/R/one_of_primitive_type_test.R
index ed13169f902..faf3f7850ab 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/one_of_primitive_type_test.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/one_of_primitive_type_test.R
@@ -193,7 +193,7 @@ OneOfPrimitiveTypeTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#OneOfPrimitiveTypeTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#OneOfPrimitiveTypeTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/order.R b/samples/client/petstore/R-httr2-wrapper/R/order.R
index 26646896269..08c080464e6 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/order.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/order.R
@@ -40,7 +40,7 @@ Order <- R6::R6Class(
#' @param shipDate shipDate
#' @param status Order Status
#' @param complete complete. Default to FALSE.
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `petId` = NULL, `quantity` = NULL, `shipDate` = NULL, `status` = NULL, `complete` = FALSE, additional_properties = NULL, ...) {
@@ -320,7 +320,7 @@ Order <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Order$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Order$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/pet.R b/samples/client/petstore/R-httr2-wrapper/R/pet.R
index 8be5a058335..42db1ecb885 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/pet.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/pet.R
@@ -40,7 +40,7 @@ Pet <- R6::R6Class(
#' @param category category
#' @param tags tags
#' @param status pet status in the store
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`name`, `photoUrls`, `id` = NULL, `category` = NULL, `tags` = NULL, `status` = NULL, additional_properties = NULL, ...) {
@@ -353,7 +353,7 @@ Pet <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Pet$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Pet$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/pig.R b/samples/client/petstore/R-httr2-wrapper/R/pig.R
index f5d81b79392..a7139f4795b 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/pig.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/pig.R
@@ -217,7 +217,7 @@ Pig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#Pig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#Pig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/special.R b/samples/client/petstore/R-httr2-wrapper/R/special.R
index 39664bea75c..27a23809a07 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/special.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/special.R
@@ -43,7 +43,7 @@ Special <- R6::R6Class(
#' @param 123_number 123_number
#' @param array[test] array[test]
#' @param empty_string empty_string
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`set_test` = NULL, `item_self` = NULL, `item_private` = NULL, `item_super` = NULL, `123_number` = NULL, `array[test]` = NULL, `empty_string` = NULL, additional_properties = NULL, ...) {
@@ -346,7 +346,7 @@ Special <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Special$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Special$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/store_api.R b/samples/client/petstore/R-httr2-wrapper/R/store_api.R
index 129e5d06d2b..d5238552acf 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/store_api.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/store_api.R
@@ -54,7 +54,7 @@
#' }
#'
#' \strong{ get_order_by_id } \emph{ 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
#'
#' \itemize{
#' \item \emph{ @param } order_id integer
diff --git a/samples/client/petstore/R-httr2-wrapper/R/tag.R b/samples/client/petstore/R-httr2-wrapper/R/tag.R
index be068d1474c..52079beeb09 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/tag.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/tag.R
@@ -28,7 +28,7 @@ Tag <- R6::R6Class(
#'
#' @param id id
#' @param name name
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `name` = NULL, additional_properties = NULL, ...) {
@@ -211,7 +211,7 @@ Tag <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Tag$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Tag$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/update_pet_request.R b/samples/client/petstore/R-httr2-wrapper/R/update_pet_request.R
index bde06df6a8a..2fc96ab4fff 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/update_pet_request.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/update_pet_request.R
@@ -28,7 +28,7 @@ UpdatePetRequest <- R6::R6Class(
#'
#' @param jsonData jsonData
#' @param binaryDataN2Information binaryDataN2Information
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`jsonData` = NULL, `binaryDataN2Information` = NULL, additional_properties = NULL, ...) {
@@ -208,7 +208,7 @@ UpdatePetRequest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# UpdatePetRequest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# UpdatePetRequest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/user.R b/samples/client/petstore/R-httr2-wrapper/R/user.R
index 43b51ffa41c..533469b6422 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/user.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/user.R
@@ -46,7 +46,7 @@ User <- R6::R6Class(
#' @param password password
#' @param phone phone
#' @param userStatus User Status
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `username` = NULL, `firstName` = NULL, `lastName` = NULL, `email` = NULL, `password` = NULL, `phone` = NULL, `userStatus` = NULL, additional_properties = NULL, ...) {
@@ -361,7 +361,7 @@ User <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# User$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# User$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/whale.R b/samples/client/petstore/R-httr2-wrapper/R/whale.R
index dc70b1dd33e..3305ab6ce6d 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/whale.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/whale.R
@@ -31,7 +31,7 @@ Whale <- R6::R6Class(
#' @param className className
#' @param hasBaleen hasBaleen
#' @param hasTeeth hasTeeth
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `hasBaleen` = NULL, `hasTeeth` = NULL, additional_properties = NULL, ...) {
@@ -254,7 +254,7 @@ Whale <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Whale$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Whale$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/R/zebra.R b/samples/client/petstore/R-httr2-wrapper/R/zebra.R
index c8d06d23d6a..122e76d20ea 100644
--- a/samples/client/petstore/R-httr2-wrapper/R/zebra.R
+++ b/samples/client/petstore/R-httr2-wrapper/R/zebra.R
@@ -28,7 +28,7 @@ Zebra <- R6::R6Class(
#'
#' @param className className
#' @param type type
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `type` = NULL, additional_properties = NULL, ...) {
@@ -238,7 +238,7 @@ Zebra <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Zebra$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Zebra$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2-wrapper/docs/StoreApi.md b/samples/client/petstore/R-httr2-wrapper/docs/StoreApi.md
index 91cfa8e765d..9818d6e3f06 100644
--- a/samples/client/petstore/R-httr2-wrapper/docs/StoreApi.md
+++ b/samples/client/petstore/R-httr2-wrapper/docs/StoreApi.md
@@ -129,7 +129,7 @@ This endpoint does not need any parameter.
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
### Example
```R
diff --git a/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_petstore.R b/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_petstore.R
index df15619de1b..917d3fb00ec 100644
--- a/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_petstore.R
+++ b/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_petstore.R
@@ -524,7 +524,7 @@ test_that("Tests oneOf", {
# class name test
expect_equal(get(class(basque_pig$actual_instance)[[1]], pos = -1)$classname, "BasquePig")
- # test contructors
+ # test constructors
pig2 <- Pig$new(instance = basque_pig$actual_instance)
expect_equal(pig2$actual_type, "BasquePig")
expect_equal(pig2$actual_instance$color, "red")
diff --git a/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_store_api.R b/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_store_api.R
index 1ebb3f82a63..3ce6f412c93 100644
--- a/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_store_api.R
+++ b/samples/client/petstore/R-httr2-wrapper/tests/testthat/test_store_api.R
@@ -32,7 +32,7 @@ test_that("GetOrderById", {
# tests for GetOrderById
# base path: http://petstore.swagger.io/v2
# 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 order.id integer ID of pet that needs to be fetched
# @return [Order]
diff --git a/samples/client/petstore/R-httr2/.openapi-generator-ignore b/samples/client/petstore/R-httr2/.openapi-generator-ignore
index c5fa491b4c5..deed424f8a1 100644
--- a/samples/client/petstore/R-httr2/.openapi-generator-ignore
+++ b/samples/client/petstore/R-httr2/.openapi-generator-ignore
@@ -5,7 +5,7 @@
# The patterns follow closely to .gitignore or .dockerignore.
# As an example, the C# client generator defines ApiClient.cs.
-# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
+# You can make changes and tell Swagger Codegen to ignore just this file by uncommenting the following line:
#ApiClient.cs
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
diff --git a/samples/client/petstore/R-httr2/R/allof_tag_api_response.R b/samples/client/petstore/R-httr2/R/allof_tag_api_response.R
index c4134b53e68..98a3cd8fd65 100644
--- a/samples/client/petstore/R-httr2/R/allof_tag_api_response.R
+++ b/samples/client/petstore/R-httr2/R/allof_tag_api_response.R
@@ -253,7 +253,7 @@ AllofTagApiResponse <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# AllofTagApiResponse$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# AllofTagApiResponse$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/animal.R b/samples/client/petstore/R-httr2/R/animal.R
index 6b4d78ff5ed..3c62c6687e4 100644
--- a/samples/client/petstore/R-httr2/R/animal.R
+++ b/samples/client/petstore/R-httr2/R/animal.R
@@ -198,7 +198,7 @@ Animal <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Animal$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Animal$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/any_of_pig.R b/samples/client/petstore/R-httr2/R/any_of_pig.R
index 64e859d560b..34736dc7f38 100644
--- a/samples/client/petstore/R-httr2/R/any_of_pig.R
+++ b/samples/client/petstore/R-httr2/R/any_of_pig.R
@@ -174,7 +174,7 @@ AnyOfPig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#AnyOfPig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#AnyOfPig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/any_of_primitive_type_test.R b/samples/client/petstore/R-httr2/R/any_of_primitive_type_test.R
index da1e53ce472..c34326a3161 100644
--- a/samples/client/petstore/R-httr2/R/any_of_primitive_type_test.R
+++ b/samples/client/petstore/R-httr2/R/any_of_primitive_type_test.R
@@ -193,7 +193,7 @@ AnyOfPrimitiveTypeTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#AnyOfPrimitiveTypeTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#AnyOfPrimitiveTypeTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/api_client.R b/samples/client/petstore/R-httr2/R/api_client.R
index 3ca3cf9ce7f..5ad09ce50e0 100644
--- a/samples/client/petstore/R-httr2/R/api_client.R
+++ b/samples/client/petstore/R-httr2/R/api_client.R
@@ -163,7 +163,7 @@ ApiClient <- R6::R6Class(
#' @param header_params The header parameters.
#' @param form_params The form parameters.
#' @param file_params The form parameters to upload files.
- #' @param accepts The HTTP accpet headers.
+ #' @param accepts The HTTP accept headers.
#' @param content_types The HTTP content-type headers.
#' @param body The HTTP request body.
#' @param is_oauth True if the endpoints required OAuth authentication.
@@ -194,7 +194,7 @@ ApiClient <- R6::R6Class(
#' @param header_params The header parameters.
#' @param form_params The form parameters.
#' @param file_params The form parameters for uploading files.
- #' @param accepts The HTTP accpet headers.
+ #' @param accepts The HTTP accept headers.
#' @param content_types The HTTP content-type headers.
#' @param body The HTTP request body.
#' @param is_oauth True if the endpoints required OAuth authentication.
@@ -405,10 +405,10 @@ ApiClient <- R6::R6Class(
}
return_obj
},
- #' Return a propery header (for accept or content-type).
+ #' Return a property header (for accept or content-type).
#'
#' @description
- #' Return a propery header (for accept or content-type). If JSON-related MIME is found,
+ #' Return a property header (for accept or content-type). If JSON-related MIME is found,
#' return it. Otherwise, return the first one, if any.
#'
#' @param headers A list of headers
diff --git a/samples/client/petstore/R-httr2/R/api_response.R b/samples/client/petstore/R-httr2/R/api_response.R
index 70431ae7e58..6cff851aed4 100644
--- a/samples/client/petstore/R-httr2/R/api_response.R
+++ b/samples/client/petstore/R-httr2/R/api_response.R
@@ -12,7 +12,7 @@
#' @field content The deserialized response body.
#' @field response The raw response from the endpoint.
#' @field status_code The HTTP response status code.
-#' @field status_code_desc The brief descriptoin of the HTTP response status code.
+#' @field status_code_desc The brief description of the HTTP response status code.
#' @field headers The HTTP response headers.
#' @export
ApiResponse <- R6::R6Class(
diff --git a/samples/client/petstore/R-httr2/R/basque_pig.R b/samples/client/petstore/R-httr2/R/basque_pig.R
index 28a10e6ddc4..53756e06c44 100644
--- a/samples/client/petstore/R-httr2/R/basque_pig.R
+++ b/samples/client/petstore/R-httr2/R/basque_pig.R
@@ -214,7 +214,7 @@ BasquePig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# BasquePig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# BasquePig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/cat.R b/samples/client/petstore/R-httr2/R/cat.R
index eaba966de58..861a3b174ae 100644
--- a/samples/client/petstore/R-httr2/R/cat.R
+++ b/samples/client/petstore/R-httr2/R/cat.R
@@ -222,7 +222,7 @@ Cat <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Cat$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Cat$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/cat_all_of.R b/samples/client/petstore/R-httr2/R/cat_all_of.R
index d2889ac4990..6ce939b452d 100644
--- a/samples/client/petstore/R-httr2/R/cat_all_of.R
+++ b/samples/client/petstore/R-httr2/R/cat_all_of.R
@@ -153,7 +153,7 @@ CatAllOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# CatAllOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# CatAllOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/category.R b/samples/client/petstore/R-httr2/R/category.R
index 82c56228604..67c8059bc8f 100644
--- a/samples/client/petstore/R-httr2/R/category.R
+++ b/samples/client/petstore/R-httr2/R/category.R
@@ -186,7 +186,7 @@ Category <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Category$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Category$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/danish_pig.R b/samples/client/petstore/R-httr2/R/danish_pig.R
index aea435d0fbf..84e4b50ea89 100644
--- a/samples/client/petstore/R-httr2/R/danish_pig.R
+++ b/samples/client/petstore/R-httr2/R/danish_pig.R
@@ -214,7 +214,7 @@ DanishPig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# DanishPig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# DanishPig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/date.R b/samples/client/petstore/R-httr2/R/date.R
index a188cad8fce..482bb1ef037 100644
--- a/samples/client/petstore/R-httr2/R/date.R
+++ b/samples/client/petstore/R-httr2/R/date.R
@@ -255,7 +255,7 @@ Date <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Date$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Date$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/dog.R b/samples/client/petstore/R-httr2/R/dog.R
index 9585ef81a58..9916c7bb2e3 100644
--- a/samples/client/petstore/R-httr2/R/dog.R
+++ b/samples/client/petstore/R-httr2/R/dog.R
@@ -222,7 +222,7 @@ Dog <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Dog$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Dog$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/dog_all_of.R b/samples/client/petstore/R-httr2/R/dog_all_of.R
index c9ad5531225..42f587493a7 100644
--- a/samples/client/petstore/R-httr2/R/dog_all_of.R
+++ b/samples/client/petstore/R-httr2/R/dog_all_of.R
@@ -153,7 +153,7 @@ DogAllOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# DogAllOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# DogAllOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/format_test.R b/samples/client/petstore/R-httr2/R/format_test.R
index 8361a769f0f..e07519373d3 100644
--- a/samples/client/petstore/R-httr2/R/format_test.R
+++ b/samples/client/petstore/R-httr2/R/format_test.R
@@ -668,7 +668,7 @@ FormatTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# FormatTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# FormatTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/mammal.R b/samples/client/petstore/R-httr2/R/mammal.R
index 9864432e8fb..a5af6d76d64 100644
--- a/samples/client/petstore/R-httr2/R/mammal.R
+++ b/samples/client/petstore/R-httr2/R/mammal.R
@@ -191,7 +191,7 @@ Mammal <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#Mammal$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#Mammal$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/model_api_response.R b/samples/client/petstore/R-httr2/R/model_api_response.R
index 0fd0c71e99c..de62918e893 100644
--- a/samples/client/petstore/R-httr2/R/model_api_response.R
+++ b/samples/client/petstore/R-httr2/R/model_api_response.R
@@ -203,7 +203,7 @@ ModelApiResponse <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# ModelApiResponse$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# ModelApiResponse$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/nested_one_of.R b/samples/client/petstore/R-httr2/R/nested_one_of.R
index beef5124f9b..a2c5fc4b83c 100644
--- a/samples/client/petstore/R-httr2/R/nested_one_of.R
+++ b/samples/client/petstore/R-httr2/R/nested_one_of.R
@@ -178,7 +178,7 @@ NestedOneOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# NestedOneOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# NestedOneOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/one_of_primitive_type_test.R b/samples/client/petstore/R-httr2/R/one_of_primitive_type_test.R
index ed13169f902..faf3f7850ab 100644
--- a/samples/client/petstore/R-httr2/R/one_of_primitive_type_test.R
+++ b/samples/client/petstore/R-httr2/R/one_of_primitive_type_test.R
@@ -193,7 +193,7 @@ OneOfPrimitiveTypeTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#OneOfPrimitiveTypeTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#OneOfPrimitiveTypeTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/order.R b/samples/client/petstore/R-httr2/R/order.R
index b5604d99900..38975d63ee9 100644
--- a/samples/client/petstore/R-httr2/R/order.R
+++ b/samples/client/petstore/R-httr2/R/order.R
@@ -287,7 +287,7 @@ Order <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Order$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Order$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/pet.R b/samples/client/petstore/R-httr2/R/pet.R
index be5b2767ef1..7070dc689ea 100644
--- a/samples/client/petstore/R-httr2/R/pet.R
+++ b/samples/client/petstore/R-httr2/R/pet.R
@@ -320,7 +320,7 @@ Pet <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Pet$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Pet$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/pig.R b/samples/client/petstore/R-httr2/R/pig.R
index 570346408f3..d497bc28039 100644
--- a/samples/client/petstore/R-httr2/R/pig.R
+++ b/samples/client/petstore/R-httr2/R/pig.R
@@ -191,7 +191,7 @@ Pig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#Pig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#Pig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/special.R b/samples/client/petstore/R-httr2/R/special.R
index e2089142e9d..34119a5ce55 100644
--- a/samples/client/petstore/R-httr2/R/special.R
+++ b/samples/client/petstore/R-httr2/R/special.R
@@ -313,7 +313,7 @@ Special <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Special$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Special$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/store_api.R b/samples/client/petstore/R-httr2/R/store_api.R
index b5941c11d85..60b60fa0603 100644
--- a/samples/client/petstore/R-httr2/R/store_api.R
+++ b/samples/client/petstore/R-httr2/R/store_api.R
@@ -54,7 +54,7 @@
#' }
#'
#' \strong{ get_order_by_id } \emph{ 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
#'
#' \itemize{
#' \item \emph{ @param } order_id integer
diff --git a/samples/client/petstore/R-httr2/R/tag.R b/samples/client/petstore/R-httr2/R/tag.R
index 51603e72ab3..97c9906129a 100644
--- a/samples/client/petstore/R-httr2/R/tag.R
+++ b/samples/client/petstore/R-httr2/R/tag.R
@@ -178,7 +178,7 @@ Tag <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Tag$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Tag$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/update_pet_request.R b/samples/client/petstore/R-httr2/R/update_pet_request.R
index 1d37555f4b0..a2da076f8de 100644
--- a/samples/client/petstore/R-httr2/R/update_pet_request.R
+++ b/samples/client/petstore/R-httr2/R/update_pet_request.R
@@ -175,7 +175,7 @@ UpdatePetRequest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# UpdatePetRequest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# UpdatePetRequest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/user.R b/samples/client/petstore/R-httr2/R/user.R
index 78896afef3c..d37c45f4fa2 100644
--- a/samples/client/petstore/R-httr2/R/user.R
+++ b/samples/client/petstore/R-httr2/R/user.R
@@ -328,7 +328,7 @@ User <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# User$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# User$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/whale.R b/samples/client/petstore/R-httr2/R/whale.R
index 084df84385a..1ccb12a0bc9 100644
--- a/samples/client/petstore/R-httr2/R/whale.R
+++ b/samples/client/petstore/R-httr2/R/whale.R
@@ -221,7 +221,7 @@ Whale <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Whale$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Whale$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/R/zebra.R b/samples/client/petstore/R-httr2/R/zebra.R
index 0a1aa587e11..09f0e554d63 100644
--- a/samples/client/petstore/R-httr2/R/zebra.R
+++ b/samples/client/petstore/R-httr2/R/zebra.R
@@ -205,7 +205,7 @@ Zebra <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Zebra$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Zebra$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R-httr2/docs/StoreApi.md b/samples/client/petstore/R-httr2/docs/StoreApi.md
index c0453bb3610..e34a7edd789 100644
--- a/samples/client/petstore/R-httr2/docs/StoreApi.md
+++ b/samples/client/petstore/R-httr2/docs/StoreApi.md
@@ -129,7 +129,7 @@ This endpoint does not need any parameter.
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
### Example
```R
diff --git a/samples/client/petstore/R-httr2/man/StoreApi.Rd b/samples/client/petstore/R-httr2/man/StoreApi.Rd
index 2423e1819e0..1ed70bec699 100644
--- a/samples/client/petstore/R-httr2/man/StoreApi.Rd
+++ b/samples/client/petstore/R-httr2/man/StoreApi.Rd
@@ -62,7 +62,7 @@ Returns a map of status codes to quantities
}
\strong{ GetOrderById } \emph{ 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
\itemize{
\item \emph{ @param } order_id integer
diff --git a/samples/client/petstore/R-httr2/tests/testthat/test_petstore.R b/samples/client/petstore/R-httr2/tests/testthat/test_petstore.R
index 9e220b9af6d..b612714b812 100644
--- a/samples/client/petstore/R-httr2/tests/testthat/test_petstore.R
+++ b/samples/client/petstore/R-httr2/tests/testthat/test_petstore.R
@@ -331,7 +331,7 @@ test_that("Tests oneOf", {
# class name test
expect_equal(get(class(basque_pig$actual_instance)[[1]], pos = -1)$classname, "BasquePig")
- # test contructors
+ # test constructors
pig2 <- Pig$new(instance = basque_pig$actual_instance)
expect_equal(pig2$actual_type, "BasquePig")
expect_equal(pig2$actual_instance$color, "red")
diff --git a/samples/client/petstore/R-httr2/tests/testthat/test_store_api.R b/samples/client/petstore/R-httr2/tests/testthat/test_store_api.R
index 1ebb3f82a63..3ce6f412c93 100644
--- a/samples/client/petstore/R-httr2/tests/testthat/test_store_api.R
+++ b/samples/client/petstore/R-httr2/tests/testthat/test_store_api.R
@@ -32,7 +32,7 @@ test_that("GetOrderById", {
# tests for GetOrderById
# base path: http://petstore.swagger.io/v2
# 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 order.id integer ID of pet that needs to be fetched
# @return [Order]
diff --git a/samples/client/petstore/R/.openapi-generator-ignore b/samples/client/petstore/R/.openapi-generator-ignore
index c5fa491b4c5..deed424f8a1 100644
--- a/samples/client/petstore/R/.openapi-generator-ignore
+++ b/samples/client/petstore/R/.openapi-generator-ignore
@@ -5,7 +5,7 @@
# The patterns follow closely to .gitignore or .dockerignore.
# As an example, the C# client generator defines ApiClient.cs.
-# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
+# You can make changes and tell Swagger Codegen to ignore just this file by uncommenting the following line:
#ApiClient.cs
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
diff --git a/samples/client/petstore/R/R/allof_tag_api_response.R b/samples/client/petstore/R/R/allof_tag_api_response.R
index 220d89ee503..7cfd85917e9 100644
--- a/samples/client/petstore/R/R/allof_tag_api_response.R
+++ b/samples/client/petstore/R/R/allof_tag_api_response.R
@@ -37,7 +37,7 @@ AllofTagApiResponse <- R6::R6Class(
#' @param code code
#' @param type type
#' @param message message
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `name` = NULL, `code` = NULL, `type` = NULL, `message` = NULL, additional_properties = NULL, ...) {
@@ -286,7 +286,7 @@ AllofTagApiResponse <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# AllofTagApiResponse$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# AllofTagApiResponse$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/animal.R b/samples/client/petstore/R/R/animal.R
index b506bced42f..a1689f8394f 100644
--- a/samples/client/petstore/R/R/animal.R
+++ b/samples/client/petstore/R/R/animal.R
@@ -30,7 +30,7 @@ Animal <- R6::R6Class(
#'
#' @param className className
#' @param color color. Default to "red".
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color` = "red", additional_properties = NULL, ...) {
@@ -231,7 +231,7 @@ Animal <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Animal$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Animal$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/any_of_pig.R b/samples/client/petstore/R/R/any_of_pig.R
index 64e859d560b..34736dc7f38 100644
--- a/samples/client/petstore/R/R/any_of_pig.R
+++ b/samples/client/petstore/R/R/any_of_pig.R
@@ -174,7 +174,7 @@ AnyOfPig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#AnyOfPig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#AnyOfPig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/any_of_primitive_type_test.R b/samples/client/petstore/R/R/any_of_primitive_type_test.R
index da1e53ce472..c34326a3161 100644
--- a/samples/client/petstore/R/R/any_of_primitive_type_test.R
+++ b/samples/client/petstore/R/R/any_of_primitive_type_test.R
@@ -193,7 +193,7 @@ AnyOfPrimitiveTypeTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#AnyOfPrimitiveTypeTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#AnyOfPrimitiveTypeTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/api_client.R b/samples/client/petstore/R/R/api_client.R
index cd0958b02de..6fe5c3488f1 100644
--- a/samples/client/petstore/R/R/api_client.R
+++ b/samples/client/petstore/R/R/api_client.R
@@ -392,10 +392,10 @@ ApiClient <- R6::R6Class(
}
return_obj
},
- #' Return a propery header (for accept or content-type).
+ #' Return a property header (for accept or content-type).
#'
#' @description
- #' Return a propery header (for accept or content-type). If JSON-related MIME is found,
+ #' Return a property header (for accept or content-type). If JSON-related MIME is found,
#' return it. Otherwise, return the first one, if any.
#'
#' @param headers A list of headers
diff --git a/samples/client/petstore/R/R/api_response.R b/samples/client/petstore/R/R/api_response.R
index 70431ae7e58..6cff851aed4 100644
--- a/samples/client/petstore/R/R/api_response.R
+++ b/samples/client/petstore/R/R/api_response.R
@@ -12,7 +12,7 @@
#' @field content The deserialized response body.
#' @field response The raw response from the endpoint.
#' @field status_code The HTTP response status code.
-#' @field status_code_desc The brief descriptoin of the HTTP response status code.
+#' @field status_code_desc The brief description of the HTTP response status code.
#' @field headers The HTTP response headers.
#' @export
ApiResponse <- R6::R6Class(
diff --git a/samples/client/petstore/R/R/basque_pig.R b/samples/client/petstore/R/R/basque_pig.R
index ac83042c8cf..048bff78e75 100644
--- a/samples/client/petstore/R/R/basque_pig.R
+++ b/samples/client/petstore/R/R/basque_pig.R
@@ -28,7 +28,7 @@ BasquePig <- R6::R6Class(
#'
#' @param className className
#' @param color color
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color`, additional_properties = NULL, ...) {
@@ -247,7 +247,7 @@ BasquePig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# BasquePig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# BasquePig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/cat.R b/samples/client/petstore/R/R/cat.R
index f74e2d887dd..9198500c01a 100644
--- a/samples/client/petstore/R/R/cat.R
+++ b/samples/client/petstore/R/R/cat.R
@@ -32,7 +32,7 @@ Cat <- R6::R6Class(
#' @param className className
#' @param color color. Default to "red".
#' @param declawed declawed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color` = "red", `declawed` = NULL, additional_properties = NULL, ...) {
@@ -255,7 +255,7 @@ Cat <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Cat$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Cat$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/cat_all_of.R b/samples/client/petstore/R/R/cat_all_of.R
index 197e1a46e3a..d25992a7878 100644
--- a/samples/client/petstore/R/R/cat_all_of.R
+++ b/samples/client/petstore/R/R/cat_all_of.R
@@ -25,7 +25,7 @@ CatAllOf <- R6::R6Class(
#' Initialize a new CatAllOf class.
#'
#' @param declawed declawed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`declawed` = NULL, additional_properties = NULL, ...) {
@@ -186,7 +186,7 @@ CatAllOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# CatAllOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# CatAllOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/category.R b/samples/client/petstore/R/R/category.R
index 2646d01bd72..175b3cbb9ae 100644
--- a/samples/client/petstore/R/R/category.R
+++ b/samples/client/petstore/R/R/category.R
@@ -28,7 +28,7 @@ Category <- R6::R6Class(
#'
#' @param id id
#' @param name name
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `name` = NULL, additional_properties = NULL, ...) {
@@ -219,7 +219,7 @@ Category <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Category$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Category$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/danish_pig.R b/samples/client/petstore/R/R/danish_pig.R
index 06cf5096a88..627bd413163 100644
--- a/samples/client/petstore/R/R/danish_pig.R
+++ b/samples/client/petstore/R/R/danish_pig.R
@@ -28,7 +28,7 @@ DanishPig <- R6::R6Class(
#'
#' @param className className
#' @param size size
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `size`, additional_properties = NULL, ...) {
@@ -247,7 +247,7 @@ DanishPig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# DanishPig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# DanishPig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/date.R b/samples/client/petstore/R/R/date.R
index 79945bc8cfc..3299b6658ad 100644
--- a/samples/client/petstore/R/R/date.R
+++ b/samples/client/petstore/R/R/date.R
@@ -31,7 +31,7 @@ Date <- R6::R6Class(
#' @param className className
#' @param url_property url_property
#' @param percent_description using \% in the description
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `url_property`, `percent_description` = NULL, additional_properties = NULL, ...) {
@@ -288,7 +288,7 @@ Date <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Date$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Date$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/dog.R b/samples/client/petstore/R/R/dog.R
index a814c57d586..068eec8eca8 100644
--- a/samples/client/petstore/R/R/dog.R
+++ b/samples/client/petstore/R/R/dog.R
@@ -32,7 +32,7 @@ Dog <- R6::R6Class(
#' @param className className
#' @param color color. Default to "red".
#' @param breed breed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `color` = "red", `breed` = NULL, additional_properties = NULL, ...) {
@@ -255,7 +255,7 @@ Dog <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Dog$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Dog$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/dog_all_of.R b/samples/client/petstore/R/R/dog_all_of.R
index 17608478eed..d35a85abbb5 100644
--- a/samples/client/petstore/R/R/dog_all_of.R
+++ b/samples/client/petstore/R/R/dog_all_of.R
@@ -25,7 +25,7 @@ DogAllOf <- R6::R6Class(
#' Initialize a new DogAllOf class.
#'
#' @param breed breed
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`breed` = NULL, additional_properties = NULL, ...) {
@@ -186,7 +186,7 @@ DogAllOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# DogAllOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# DogAllOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/format_test.R b/samples/client/petstore/R/R/format_test.R
index 4bd74e3a727..85894ec7b1f 100644
--- a/samples/client/petstore/R/R/format_test.R
+++ b/samples/client/petstore/R/R/format_test.R
@@ -67,7 +67,7 @@ FormatTest <- R6::R6Class(
#' @param uuid uuid
#' @param pattern_with_digits A string that is a 10 digit number. Can have leading zeros.
#' @param pattern_with_digits_and_delimiter A string starting with 'image_' (case insensitive) and one to three digits following i.e. Image_01.
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`number`, `byte`, `date`, `password`, `integer` = NULL, `int32` = NULL, `int64` = NULL, `float` = NULL, `double` = NULL, `string` = NULL, `binary` = NULL, `dateTime` = "2015-10-28T14:38:02Z", `uuid` = NULL, `pattern_with_digits` = NULL, `pattern_with_digits_and_delimiter` = NULL, additional_properties = NULL, ...) {
@@ -701,7 +701,7 @@ FormatTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# FormatTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# FormatTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/mammal.R b/samples/client/petstore/R/R/mammal.R
index 9864432e8fb..a5af6d76d64 100644
--- a/samples/client/petstore/R/R/mammal.R
+++ b/samples/client/petstore/R/R/mammal.R
@@ -191,7 +191,7 @@ Mammal <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#Mammal$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#Mammal$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/model_api_response.R b/samples/client/petstore/R/R/model_api_response.R
index b0e4bbba7e9..028c66c7230 100644
--- a/samples/client/petstore/R/R/model_api_response.R
+++ b/samples/client/petstore/R/R/model_api_response.R
@@ -31,7 +31,7 @@ ModelApiResponse <- R6::R6Class(
#' @param code code
#' @param type type
#' @param message message
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`code` = NULL, `type` = NULL, `message` = NULL, additional_properties = NULL, ...) {
@@ -236,7 +236,7 @@ ModelApiResponse <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# ModelApiResponse$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# ModelApiResponse$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/nested_one_of.R b/samples/client/petstore/R/R/nested_one_of.R
index 73f4e938cbd..d2a670b4edd 100644
--- a/samples/client/petstore/R/R/nested_one_of.R
+++ b/samples/client/petstore/R/R/nested_one_of.R
@@ -28,7 +28,7 @@ NestedOneOf <- R6::R6Class(
#'
#' @param size size
#' @param nested_pig nested_pig
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`size` = NULL, `nested_pig` = NULL, additional_properties = NULL, ...) {
@@ -211,7 +211,7 @@ NestedOneOf <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# NestedOneOf$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# NestedOneOf$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/one_of_primitive_type_test.R b/samples/client/petstore/R/R/one_of_primitive_type_test.R
index ed13169f902..faf3f7850ab 100644
--- a/samples/client/petstore/R/R/one_of_primitive_type_test.R
+++ b/samples/client/petstore/R/R/one_of_primitive_type_test.R
@@ -193,7 +193,7 @@ OneOfPrimitiveTypeTest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#OneOfPrimitiveTypeTest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#OneOfPrimitiveTypeTest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/order.R b/samples/client/petstore/R/R/order.R
index 26646896269..08c080464e6 100644
--- a/samples/client/petstore/R/R/order.R
+++ b/samples/client/petstore/R/R/order.R
@@ -40,7 +40,7 @@ Order <- R6::R6Class(
#' @param shipDate shipDate
#' @param status Order Status
#' @param complete complete. Default to FALSE.
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `petId` = NULL, `quantity` = NULL, `shipDate` = NULL, `status` = NULL, `complete` = FALSE, additional_properties = NULL, ...) {
@@ -320,7 +320,7 @@ Order <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Order$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Order$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/pet.R b/samples/client/petstore/R/R/pet.R
index 8be5a058335..42db1ecb885 100644
--- a/samples/client/petstore/R/R/pet.R
+++ b/samples/client/petstore/R/R/pet.R
@@ -40,7 +40,7 @@ Pet <- R6::R6Class(
#' @param category category
#' @param tags tags
#' @param status pet status in the store
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`name`, `photoUrls`, `id` = NULL, `category` = NULL, `tags` = NULL, `status` = NULL, additional_properties = NULL, ...) {
@@ -353,7 +353,7 @@ Pet <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Pet$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Pet$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/pig.R b/samples/client/petstore/R/R/pig.R
index 570346408f3..d497bc28039 100644
--- a/samples/client/petstore/R/R/pig.R
+++ b/samples/client/petstore/R/R/pig.R
@@ -191,7 +191,7 @@ Pig <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
#Pig$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
#Pig$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/special.R b/samples/client/petstore/R/R/special.R
index 39664bea75c..27a23809a07 100644
--- a/samples/client/petstore/R/R/special.R
+++ b/samples/client/petstore/R/R/special.R
@@ -43,7 +43,7 @@ Special <- R6::R6Class(
#' @param 123_number 123_number
#' @param array[test] array[test]
#' @param empty_string empty_string
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`set_test` = NULL, `item_self` = NULL, `item_private` = NULL, `item_super` = NULL, `123_number` = NULL, `array[test]` = NULL, `empty_string` = NULL, additional_properties = NULL, ...) {
@@ -346,7 +346,7 @@ Special <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Special$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Special$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/store_api.R b/samples/client/petstore/R/R/store_api.R
index 1daff7db820..20eb0cd2cd4 100644
--- a/samples/client/petstore/R/R/store_api.R
+++ b/samples/client/petstore/R/R/store_api.R
@@ -54,7 +54,7 @@
#' }
#'
#' \strong{ GetOrderById } \emph{ 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
#'
#' \itemize{
#' \item \emph{ @param } order_id integer
diff --git a/samples/client/petstore/R/R/tag.R b/samples/client/petstore/R/R/tag.R
index be068d1474c..52079beeb09 100644
--- a/samples/client/petstore/R/R/tag.R
+++ b/samples/client/petstore/R/R/tag.R
@@ -28,7 +28,7 @@ Tag <- R6::R6Class(
#'
#' @param id id
#' @param name name
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `name` = NULL, additional_properties = NULL, ...) {
@@ -211,7 +211,7 @@ Tag <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Tag$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Tag$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/update_pet_request.R b/samples/client/petstore/R/R/update_pet_request.R
index bde06df6a8a..2fc96ab4fff 100644
--- a/samples/client/petstore/R/R/update_pet_request.R
+++ b/samples/client/petstore/R/R/update_pet_request.R
@@ -28,7 +28,7 @@ UpdatePetRequest <- R6::R6Class(
#'
#' @param jsonData jsonData
#' @param binaryDataN2Information binaryDataN2Information
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`jsonData` = NULL, `binaryDataN2Information` = NULL, additional_properties = NULL, ...) {
@@ -208,7 +208,7 @@ UpdatePetRequest <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# UpdatePetRequest$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# UpdatePetRequest$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/user.R b/samples/client/petstore/R/R/user.R
index 43b51ffa41c..533469b6422 100644
--- a/samples/client/petstore/R/R/user.R
+++ b/samples/client/petstore/R/R/user.R
@@ -46,7 +46,7 @@ User <- R6::R6Class(
#' @param password password
#' @param phone phone
#' @param userStatus User Status
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`id` = NULL, `username` = NULL, `firstName` = NULL, `lastName` = NULL, `email` = NULL, `password` = NULL, `phone` = NULL, `userStatus` = NULL, additional_properties = NULL, ...) {
@@ -361,7 +361,7 @@ User <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# User$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# User$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/whale.R b/samples/client/petstore/R/R/whale.R
index dc70b1dd33e..3305ab6ce6d 100644
--- a/samples/client/petstore/R/R/whale.R
+++ b/samples/client/petstore/R/R/whale.R
@@ -31,7 +31,7 @@ Whale <- R6::R6Class(
#' @param className className
#' @param hasBaleen hasBaleen
#' @param hasTeeth hasTeeth
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `hasBaleen` = NULL, `hasTeeth` = NULL, additional_properties = NULL, ...) {
@@ -254,7 +254,7 @@ Whale <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Whale$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Whale$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/R/zebra.R b/samples/client/petstore/R/R/zebra.R
index c8d06d23d6a..122e76d20ea 100644
--- a/samples/client/petstore/R/R/zebra.R
+++ b/samples/client/petstore/R/R/zebra.R
@@ -28,7 +28,7 @@ Zebra <- R6::R6Class(
#'
#' @param className className
#' @param type type
- #' @param additional_properties additonal properties (optional)
+ #' @param additional_properties additional properties (optional)
#' @param ... Other optional arguments.
#' @export
initialize = function(`className`, `type` = NULL, additional_properties = NULL, ...) {
@@ -238,7 +238,7 @@ Zebra <- R6::R6Class(
## Uncomment below to unlock the class to allow modifications of the method or field
# Zebra$unlock()
#
-## Below is an example to define the print fnuction
+## Below is an example to define the print function
# Zebra$set("public", "print", function(...) {
# print(jsonlite::prettify(self$toJSONString()))
# invisible(self)
diff --git a/samples/client/petstore/R/docs/StoreApi.md b/samples/client/petstore/R/docs/StoreApi.md
index b58b49eb762..cfd0f520765 100644
--- a/samples/client/petstore/R/docs/StoreApi.md
+++ b/samples/client/petstore/R/docs/StoreApi.md
@@ -129,7 +129,7 @@ This endpoint does not need any parameter.
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
### Example
```R
diff --git a/samples/client/petstore/R/tests/testthat/test_petstore.R b/samples/client/petstore/R/tests/testthat/test_petstore.R
index aee591b5256..f7a70df4f9d 100644
--- a/samples/client/petstore/R/tests/testthat/test_petstore.R
+++ b/samples/client/petstore/R/tests/testthat/test_petstore.R
@@ -265,7 +265,7 @@ test_that("Tests oneOf", {
# class name test
expect_equal(get(class(basque_pig$actual_instance)[[1]], pos = -1)$classname, "BasquePig")
- # test contructors
+ # test constructors
pig2 <- Pig$new(instance = basque_pig$actual_instance)
expect_equal(pig2$actual_type, "BasquePig")
expect_equal(pig2$actual_instance$color, "red")
diff --git a/samples/client/petstore/R/tests/testthat/test_store_api.R b/samples/client/petstore/R/tests/testthat/test_store_api.R
index 1ebb3f82a63..3ce6f412c93 100644
--- a/samples/client/petstore/R/tests/testthat/test_store_api.R
+++ b/samples/client/petstore/R/tests/testthat/test_store_api.R
@@ -32,7 +32,7 @@ test_that("GetOrderById", {
# tests for GetOrderById
# base path: http://petstore.swagger.io/v2
# 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 order.id integer ID of pet that needs to be fetched
# @return [Order]
diff --git a/samples/client/petstore/ada/.openapi-generator-ignore b/samples/client/petstore/ada/.openapi-generator-ignore
index 9b9a09a8588..94b3a421aa4 100644
--- a/samples/client/petstore/ada/.openapi-generator-ignore
+++ b/samples/client/petstore/ada/.openapi-generator-ignore
@@ -5,7 +5,7 @@
# The patterns follow closely to .gitignore or .dockerignore.
# As an example, the C# client generator defines ApiClient.cs.
-# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
+# You can make changes and tell Swagger Codegen to ignore just this file by uncommenting the following line:
#ApiClient.cs
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
diff --git a/samples/client/petstore/ada/src/client/samples-petstore-clients.adb b/samples/client/petstore/ada/src/client/samples-petstore-clients.adb
index d550af7bbe5..c420821e2e9 100644
--- a/samples/client/petstore/ada/src/client/samples-petstore-clients.adb
+++ b/samples/client/petstore/ada/src/client/samples-petstore-clients.adb
@@ -184,7 +184,7 @@ package body Samples.Petstore.Clients is
end Get_Inventory;
-- 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
procedure Get_Order_By_Id
(Client : in out Client_Type;
Order_Id : in Swagger.Long;
diff --git a/samples/client/petstore/ada/src/client/samples-petstore-clients.ads b/samples/client/petstore/ada/src/client/samples-petstore-clients.ads
index ec06fd09d56..d3a8b3fed6f 100644
--- a/samples/client/petstore/ada/src/client/samples-petstore-clients.ads
+++ b/samples/client/petstore/ada/src/client/samples-petstore-clients.ads
@@ -80,7 +80,7 @@ package Samples.Petstore.Clients is
Result : out Swagger.Integer_Map);
-- 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
procedure Get_Order_By_Id
(Client : in out Client_Type;
Order_Id : in Swagger.Long;
diff --git a/samples/client/petstore/android/httpclient/docs/StoreApi.md b/samples/client/petstore/android/httpclient/docs/StoreApi.md
index d2229bfd71f..bb9e7140cc8 100644
--- a/samples/client/petstore/android/httpclient/docs/StoreApi.md
+++ b/samples/client/petstore/android/httpclient/docs/StoreApi.md
@@ -104,7 +104,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/android/httpclient/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/android/httpclient/src/main/java/org/openapitools/client/api/StoreApi.java
index 17ad5b2c084..b0a1f40decc 100644
--- a/samples/client/petstore/android/httpclient/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/android/httpclient/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -150,7 +150,7 @@ public class StoreApi {
}
/**
* 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
* @return Order
*/
diff --git a/samples/client/petstore/android/volley/docs/StoreApi.md b/samples/client/petstore/android/volley/docs/StoreApi.md
index d2229bfd71f..bb9e7140cc8 100644
--- a/samples/client/petstore/android/volley/docs/StoreApi.md
+++ b/samples/client/petstore/android/volley/docs/StoreApi.md
@@ -104,7 +104,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/android/volley/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/android/volley/src/main/java/org/openapitools/client/api/StoreApi.java
index fd69b757348..a2d1f3635c1 100644
--- a/samples/client/petstore/android/volley/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/android/volley/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -297,7 +297,7 @@ public class StoreApi {
}
/**
* 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
* @return Order
*/
@@ -359,7 +359,7 @@ public class StoreApi {
/**
* 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
*/
public void getOrderById (Long orderId, final Response.Listener responseListener, final Response.ErrorListener errorListener) {
diff --git a/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApi.cls b/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApi.cls
index 8ad6201cd16..6fdc8415e7d 100644
--- a/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApi.cls
+++ b/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApi.cls
@@ -72,7 +72,7 @@ public class OASStoreApi {
}
/**
* 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 OASOrder
* @throws OAS.ApiException if fails to make API call
diff --git a/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApiTest.cls b/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApiTest.cls
index 548c228a651..8c1eca4b90a 100644
--- a/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApiTest.cls
+++ b/samples/client/petstore/apex/force-app/main/default/classes/OASStoreApiTest.cls
@@ -53,7 +53,7 @@ private class OASStoreApiTest {
/**
* 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
*/
@isTest
private static void getOrderByIdTest() {
diff --git a/samples/client/petstore/async-scala/.openapi-generator-ignore b/samples/client/petstore/async-scala/.openapi-generator-ignore
index c5fa491b4c5..deed424f8a1 100644
--- a/samples/client/petstore/async-scala/.openapi-generator-ignore
+++ b/samples/client/petstore/async-scala/.openapi-generator-ignore
@@ -5,7 +5,7 @@
# The patterns follow closely to .gitignore or .dockerignore.
# As an example, the C# client generator defines ApiClient.cs.
-# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
+# You can make changes and tell Swagger Codegen to ignore just this file by uncommenting the following line:
#ApiClient.cs
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
diff --git a/samples/client/petstore/bash/client.sh b/samples/client/petstore/bash/client.sh
index 6215aa728ad..218bee79963 100644
--- a/samples/client/petstore/bash/client.sh
+++ b/samples/client/petstore/bash/client.sh
@@ -24,7 +24,7 @@
#
#
-# For improved pattern matching in case statemets
+# For improved pattern matching in case statements
shopt -s extglob
###############################################################################
@@ -65,7 +65,7 @@ declare -A header_arguments
declare -A operation_parameters
##
-# Declare colors with autodection if output is terminal
+# Declare colors with autodetection if output is terminal
if [ -t 1 ]; then
RED="$(tput setaf 1)"
GREEN="$(tput setaf 2)"
@@ -591,7 +591,7 @@ build_request_path() {
parameter_value+="${qparam}=${qvalue}"
done
#
- # Append parameters specified as 'mutli' collections i.e. param=value1¶m=value2&...
+ # Append parameters specified as 'multi' collections i.e. param=value1¶m=value2&...
#
elif [[ "${collection_type}" == "multi" ]]; then
local vcount=0
@@ -802,7 +802,7 @@ echo -e " \\t\\t\\t\\t(e.g. 'https://petstore.swagger.io')"
echo -e " \\t\\t\\t\\trequired parameters or wrong content type"
echo -e " --dry-run\\t\\t\\t\\tPrint out the cURL command without"
echo -e " \\t\\t\\t\\texecuting it"
- echo -e " -nc,--no-colors\\t\\t\\tEnforce print without colors, otherwise autodected"
+ echo -e " -nc,--no-colors\\t\\t\\tEnforce print without colors, otherwise autodetected"
echo -e " -ac,--accept ${YELLOW}${OFF}\\t\\tSet the 'Accept' header in the request"
echo -e " -ct,--content-type ${YELLOW}${OFF}\\tSet the 'Content-type' header in "
echo -e " \\tthe request"
@@ -1100,7 +1100,7 @@ print_testGroupParameters_help() {
echo ""
echo -e "${BOLD}${WHITE}Responses${OFF}"
code=400
- echo -e "${result_color_table[${code:0:1}]} 400;Someting wrong${OFF}" | paste -sd' ' | column -t -s ';' | fold -sw 80 | sed '2,$s/^/ /'
+ echo -e "${result_color_table[${code:0:1}]} 400;Something wrong${OFF}" | paste -sd' ' | column -t -s ';' | fold -sw 80 | sed '2,$s/^/ /'
}
##############################################################################
#
@@ -1365,7 +1365,7 @@ print_getOrderById_help() {
echo ""
echo -e "${BOLD}${WHITE}getOrderById - Find purchase order by ID${OFF}" | paste -sd' ' | fold -sw 80 | sed '2,$s/^/ /'
echo -e ""
- echo -e "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions" | paste -sd' ' | fold -sw 80
+ echo -e "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions" | paste -sd' ' | fold -sw 80
echo -e ""
echo -e "${BOLD}${WHITE}Parameters${OFF}"
echo -e " * ${GREEN}order_id${OFF} ${BLUE}[integer]${OFF} ${RED}(required)${OFF} ${CYAN}(default: null)${OFF} - ID of pet that needs to be fetched ${YELLOW}Specify as: order_id=value${OFF}" | paste -sd' ' | fold -sw 80 | sed '2,$s/^/ /'
@@ -1586,7 +1586,7 @@ call_123Test@$%SpecialTags() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -1736,7 +1736,7 @@ call_fakeOuterBooleanSerialize() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -1814,7 +1814,7 @@ call_fakeOuterCompositeSerialize() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -1892,7 +1892,7 @@ call_fakeOuterNumberSerialize() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -1970,7 +1970,7 @@ call_fakeOuterStringSerialize() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -2048,7 +2048,7 @@ call_testBodyWithFileSchema() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -2126,7 +2126,7 @@ call_testBodyWithQueryParams() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -2204,7 +2204,7 @@ call_testClientModel() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -2390,7 +2390,7 @@ call_testInlineAdditionalProperties() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -2504,7 +2504,7 @@ call_testClassname() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -2582,7 +2582,7 @@ call_addPet() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
@@ -2802,7 +2802,7 @@ call_updatePet() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
@@ -3094,7 +3094,7 @@ call_placeOrder() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -3172,7 +3172,7 @@ call_createUser() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -3250,7 +3250,7 @@ call_createUsersWithArrayInput() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -3328,7 +3328,7 @@ call_createUsersWithListInput() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -3550,7 +3550,7 @@ call_updateUser() {
#
# Check if the user provided 'Content-type' headers in the
# command line. If not try to set them based on the OpenAPI specification
- # if values produces and consumes are defined unambigously
+ # if values produces and consumes are defined unambiguously
#
if [[ -z $header_content_type ]]; then
header_content_type="application/json"
@@ -3812,7 +3812,7 @@ case $key in
;;
*:=*)
# Parse body arguments and convert them into top level
- # JSON properties passed in the body content without qoutes
+ # JSON properties passed in the body content without quotes
if [[ "$operation" ]]; then
# ignore error about 'sep' being unused
# shellcheck disable=SC2034
diff --git a/samples/client/petstore/bash/docs/StoreApi.md b/samples/client/petstore/bash/docs/StoreApi.md
index 56b2934562b..1f43de0867d 100644
--- a/samples/client/petstore/bash/docs/StoreApi.md
+++ b/samples/client/petstore/bash/docs/StoreApi.md
@@ -82,7 +82,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/bash/petstore-cli b/samples/client/petstore/bash/petstore-cli
index 6810f2afa15..5ffeb5205bb 100755
--- a/samples/client/petstore/bash/petstore-cli
+++ b/samples/client/petstore/bash/petstore-cli
@@ -1127,7 +1127,7 @@ print_testGroupParameters_help() {
echo ""
echo -e "${BOLD}${WHITE}Responses${OFF}"
code=400
- echo -e "${result_color_table[${code:0:1}]} 400;Someting wrong${OFF}" | paste -sd' ' | column -t -s ';' | fold -sw 80 | sed '2,$s/^/ /'
+ echo -e "${result_color_table[${code:0:1}]} 400;Something wrong${OFF}" | paste -sd' ' | column -t -s ';' | fold -sw 80 | sed '2,$s/^/ /'
}
##############################################################################
#
@@ -1425,7 +1425,7 @@ print_getOrderById_help() {
echo ""
echo -e "${BOLD}${WHITE}getOrderById - Find purchase order by ID${OFF}" | paste -sd' ' | fold -sw 80 | sed '2,$s/^/ /'
echo -e ""
- echo -e "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions" | paste -sd' ' | fold -sw 80
+ echo -e "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions" | paste -sd' ' | fold -sw 80
echo -e ""
echo -e "${BOLD}${WHITE}Parameters${OFF}"
echo -e " * ${GREEN}order_id${OFF} ${BLUE}[integer]${OFF} ${RED}(required)${OFF} ${CYAN}(default: null)${OFF} - ID of pet that needs to be fetched ${YELLOW}Specify as: order_id=value${OFF}" | paste -sd' ' | fold -sw 80 | sed '2,$s/^/ /'
diff --git a/samples/client/petstore/c/CMakeLists.txt b/samples/client/petstore/c/CMakeLists.txt
index 98454803ef5..cca11426642 100644
--- a/samples/client/petstore/c/CMakeLists.txt
+++ b/samples/client/petstore/c/CMakeLists.txt
@@ -66,7 +66,7 @@ set(SRCS "")
set(HDRS "")
-## This section shows how to use the above compiled libary to compile the source files
+## This section shows how to use the above compiled library to compile the source files
## set source files
#set(SRCS
# unit-tests/manual-PetAPI.c
@@ -81,12 +81,12 @@ set(HDRS "")
## loop over all files in SRCS variable
#foreach(SOURCE_FILE ${SRCS})
-# # Get only the file name from the file as add_executable doesnot support executable with slash("/")
+# # Get only the file name from the file as add_executable doesn't support executable with slash("/")
# get_filename_component(FILE_NAME_ONLY ${SOURCE_FILE} NAME_WE)
# # Remove .c from the file name and set it as executable name
# string( REPLACE ".c" "" EXECUTABLE_FILE ${FILE_NAME_ONLY})
# # Add executable for every source file in SRCS
# add_executable(unit-${EXECUTABLE_FILE} ${SOURCE_FILE})
-# # Link above created libary to executable and dependent libary curl
+# # Link above created library to executable and dependent library curl
# target_link_libraries(unit-${EXECUTABLE_FILE} ${CURL_LIBRARIES} ${pkgName} )
#endforeach(SOURCE_FILE ${SRCS})
diff --git a/samples/client/petstore/c/api/StoreAPI.c b/samples/client/petstore/c/api/StoreAPI.c
index 3208b8ae53a..c91a9d709dc 100644
--- a/samples/client/petstore/c/api/StoreAPI.c
+++ b/samples/client/petstore/c/api/StoreAPI.c
@@ -144,7 +144,7 @@ end:
// 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
//
order_t*
StoreAPI_getOrderById(apiClient_t *apiClient, long orderId )
diff --git a/samples/client/petstore/c/api/StoreAPI.h b/samples/client/petstore/c/api/StoreAPI.h
index 43bdf758376..99e4f25d37d 100644
--- a/samples/client/petstore/c/api/StoreAPI.h
+++ b/samples/client/petstore/c/api/StoreAPI.h
@@ -26,7 +26,7 @@ StoreAPI_getInventory(apiClient_t *apiClient);
// 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
//
order_t*
StoreAPI_getOrderById(apiClient_t *apiClient, long orderId );
diff --git a/samples/client/petstore/c/docs/StoreAPI.md b/samples/client/petstore/c/docs/StoreAPI.md
index 3c6736897ec..45462990e05 100644
--- a/samples/client/petstore/c/docs/StoreAPI.md
+++ b/samples/client/petstore/c/docs/StoreAPI.md
@@ -77,7 +77,7 @@ list_t*
```c
// 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
//
order_t* StoreAPI_getOrderById(apiClient_t *apiClient, long orderId);
```
diff --git a/samples/client/petstore/c/external/cJSON.c b/samples/client/petstore/c/external/cJSON.c
index 2139b5efd93..afc9ff0db8b 100644
--- a/samples/client/petstore/c/external/cJSON.c
+++ b/samples/client/petstore/c/external/cJSON.c
@@ -125,7 +125,7 @@ typedef struct internal_hooks
} internal_hooks;
#if defined(_MSC_VER)
-/* work around MSVC error C2322: '...' address of dillimport '...' is not static */
+/* work around MSVC error C2322: '...' address of dllimport '...' is not static */
static void *internal_malloc(size_t size)
{
return malloc(size);
diff --git a/samples/client/petstore/c/unit-tests/manual-user.c b/samples/client/petstore/c/unit-tests/manual-user.c
index 738b21e22b2..1200baa2e5d 100644
--- a/samples/client/petstore/c/unit-tests/manual-user.c
+++ b/samples/client/petstore/c/unit-tests/manual-user.c
@@ -24,16 +24,16 @@ int main() {
printf("Created User is: \n%s\n", dataToPrint);
- user_t *pasrsedUser = user_parseFromJSON(JSONNODE);
+ user_t *parsedUser = user_parseFromJSON(JSONNODE);
- cJSON *fromJSON = user_convertToJSON(pasrsedUser);
+ cJSON *fromJSON = user_convertToJSON(parsedUser);
char *dataToPrintFromJSON = cJSON_Print(fromJSON);
printf("Parsed User From JSON is: \n%s\n", dataToPrintFromJSON);
user_free(newuser);
- user_free(pasrsedUser);
+ user_free(parsedUser);
cJSON_Delete(JSONNODE);
cJSON_Delete(fromJSON);
}
diff --git a/samples/client/petstore/clojure/git_push.sh b/samples/client/petstore/clojure/git_push.sh
index 8442b80bb44..f8c12cff489 100644
--- a/samples/client/petstore/clojure/git_push.sh
+++ b/samples/client/petstore/clojure/git_push.sh
@@ -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"
+# Usage example: /bin/sh ./git_push.sh wing328 openapi-petstore-perl "minor update"
git_user_id=$1
git_repo_id=$2
diff --git a/samples/client/petstore/clojure/src/open_api_petstore/api/store.clj b/samples/client/petstore/clojure/src/open_api_petstore/api/store.clj
index a91c086c3fd..f47fa3d69f9 100644
--- a/samples/client/petstore/clojure/src/open_api_petstore/api/store.clj
+++ b/samples/client/petstore/clojure/src/open_api_petstore/api/store.clj
@@ -61,7 +61,7 @@
(defn-spec get-order-by-id-with-http-info any?
"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"
[orderId string?]
(check-required-params orderId)
(call-api "/store/order/{orderId}" :get
@@ -75,7 +75,7 @@
(defn-spec get-order-by-id order-spec
"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"
[orderId string?]
(let [res (:data (get-order-by-id-with-http-info orderId))]
(if (:decode-models *api-context*)
diff --git a/samples/client/petstore/clojure/src/open_api_petstore/core.clj b/samples/client/petstore/clojure/src/open_api_petstore/core.clj
index ef30d6d2516..7c5e0def949 100644
--- a/samples/client/petstore/clojure/src/open_api_petstore/core.clj
+++ b/samples/client/petstore/clojure/src/open_api_petstore/core.clj
@@ -105,7 +105,7 @@
:else (str param)))
(defn auth->opts
- "Process the given auth to an option map that might conatin request options and parameters."
+ "Process the given auth to an option map that might contain request options and parameters."
[{:keys [type in param-name]} value]
(case type
:basic {:req-opts {:basic-auth value}}
@@ -126,7 +126,7 @@
opts))
(defn auths->opts
- "Process the given auth names to an option map that might conatin request options and parameters."
+ "Process the given auth names to an option map that might contain request options and parameters."
[auth-names]
(reduce process-auth {} auth-names))
@@ -142,7 +142,7 @@
(str (:base-url *api-context*) path)))
(defn normalize-array-param
- "Normalize array paramater according to :collection-format specified in the parameter's meta data.
+ "Normalize array parameter according to :collection-format specified in the parameter's meta data.
When the parameter contains File, a seq is returned so as to keep File parameters.
For :multi collection format, a seq is returned which will be handled properly by clj-http.
For other cases, a string is returned."
diff --git a/samples/client/petstore/cpp-qt/build-and-test.bash b/samples/client/petstore/cpp-qt/build-and-test.bash
index bcf96489533..4104bdac1bc 100755
--- a/samples/client/petstore/cpp-qt/build-and-test.bash
+++ b/samples/client/petstore/cpp-qt/build-and-test.bash
@@ -35,7 +35,7 @@ else
exit 1
fi
- echo "Check if no memory leaks occured:"
+ echo "Check if no memory leaks occurred:"
leakCount=$(cat result.log | grep 'lost: 0 bytes in 0 blocks' | wc -l)
if [ $leakCount == 3 ]
then
diff --git a/samples/client/petstore/cpp-restsdk/client/include/CppRestPetstoreClient/api/StoreApi.h b/samples/client/petstore/cpp-restsdk/client/include/CppRestPetstoreClient/api/StoreApi.h
index 5140fc90a79..57496ef7dd2 100644
--- a/samples/client/petstore/cpp-restsdk/client/include/CppRestPetstoreClient/api/StoreApi.h
+++ b/samples/client/petstore/cpp-restsdk/client/include/CppRestPetstoreClient/api/StoreApi.h
@@ -66,7 +66,7 @@ public:
/// 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
///
/// ID of pet that needs to be fetched
pplx::task> getOrderById(
diff --git a/samples/client/petstore/cpp-tiny/lib/service/StoreApi.h b/samples/client/petstore/cpp-tiny/lib/service/StoreApi.h
index b7a6781bd42..dd29c9f96e1 100644
--- a/samples/client/petstore/cpp-tiny/lib/service/StoreApi.h
+++ b/samples/client/petstore/cpp-tiny/lib/service/StoreApi.h
@@ -51,7 +51,7 @@ public:
/**
* 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*
*/
Response<
diff --git a/samples/client/petstore/cpp-tizen/doc/Doxyfile b/samples/client/petstore/cpp-tizen/doc/Doxyfile
index 9a0ba8f7186..8d056fd3d45 100644
--- a/samples/client/petstore/cpp-tizen/doc/Doxyfile
+++ b/samples/client/petstore/cpp-tizen/doc/Doxyfile
@@ -294,7 +294,7 @@ MARKDOWN_SUPPORT = YES
# When enabled doxygen tries to link words that correspond to documented
# classes, or namespaces to their corresponding documentation. Such a link can
-# be prevented in individual cases by by putting a % sign in front of the word
+# be prevented in individual cases by putting a % sign in front of the word
# or globally by setting AUTOLINK_SUPPORT to NO.
# The default value is: YES.
@@ -1397,7 +1397,7 @@ EXT_LINKS_IN_WINDOW = NO
FORMULA_FONTSIZE = 10
-# Use the FORMULA_TRANPARENT tag to determine whether or not the images
+# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
# generated for formulas are transparent PNGs. Transparent PNGs are not
# supported properly for IE 6.0, but are supported on all modern browsers.
#
diff --git a/samples/client/petstore/cpp-tizen/src/StoreManager.h b/samples/client/petstore/cpp-tizen/src/StoreManager.h
index 9736475b381..7db3e783bba 100644
--- a/samples/client/petstore/cpp-tizen/src/StoreManager.h
+++ b/samples/client/petstore/cpp-tizen/src/StoreManager.h
@@ -79,7 +79,7 @@ bool getInventoryAsync(char * accessToken,
/*! \brief Find purchase order by ID. *Synchronous*
*
- * 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*
* \param handler The callback function to be invoked on completion. *Required*
* \param accessToken The Authorization token. *Required*
@@ -92,7 +92,7 @@ bool getOrderByIdSync(char * accessToken,
/*! \brief Find purchase order by ID. *Asynchronous*
*
- * 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*
* \param handler The callback function to be invoked on completion. *Required*
* \param accessToken The Authorization token. *Required*
diff --git a/samples/client/petstore/cpp-ue4/Public/OpenAPIStoreApiOperations.h b/samples/client/petstore/cpp-ue4/Public/OpenAPIStoreApiOperations.h
index e0703baa3af..9df366173a3 100644
--- a/samples/client/petstore/cpp-ue4/Public/OpenAPIStoreApiOperations.h
+++ b/samples/client/petstore/cpp-ue4/Public/OpenAPIStoreApiOperations.h
@@ -70,7 +70,7 @@ public:
/* 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
*/
class OPENAPI_API OpenAPIStoreApi::GetOrderByIdRequest : public Request
{
diff --git a/samples/client/petstore/crystal/spec/api/store_api_spec.cr b/samples/client/petstore/crystal/spec/api/store_api_spec.cr
index 592747d6fe7..05fd3146d88 100644
--- a/samples/client/petstore/crystal/spec/api/store_api_spec.cr
+++ b/samples/client/petstore/crystal/spec/api/store_api_spec.cr
@@ -48,7 +48,7 @@ describe "StoreApi" do
# unit tests for get_order_by_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 order_id ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Order]
diff --git a/samples/client/petstore/crystal/src/petstore/api/store_api.cr b/samples/client/petstore/crystal/src/petstore/api/store_api.cr
index f24fae79033..76d3c836d9a 100644
--- a/samples/client/petstore/crystal/src/petstore/api/store_api.cr
+++ b/samples/client/petstore/crystal/src/petstore/api/store_api.cr
@@ -128,7 +128,7 @@ module Petstore
end
# 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 order_id [Int64] ID of pet that needs to be fetched
# @return [Order]
def get_order_by_id(order_id : Int64)
@@ -137,7 +137,7 @@ module Petstore
end
# 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 order_id [Int64] ID of pet that needs to be fetched
# @return [Array<(Order, Integer, Hash)>] Order data, response status code and response headers
def get_order_by_id_with_http_info(order_id : Int64)
diff --git a/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/docs/StoreApi.md b/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/docs/StoreApi.md
index 068cb5419f8..d68fa5efb81 100644
--- a/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/docs/StoreApi.md
@@ -138,7 +138,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs
index df7be44e7b9..423d179cdbe 100644
--- a/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs
@@ -23,7 +23,7 @@ namespace Org.OpenAPITools.Api
/// Dictionary<string, int?>
Dictionary GetInventory ();
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// ID of pet that needs to be fetched
/// Order
@@ -159,7 +159,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// ID of pet that needs to be fetched
/// Order
diff --git a/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs b/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs
index e1d91307dcf..7b0d472a06e 100644
--- a/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs
+++ b/samples/client/petstore/csharp-dotnet2/OpenAPIClientTest/Lib/OpenAPIClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs
@@ -14,7 +14,7 @@ using RestSharp.Extensions;
namespace Org.OpenAPITools.Client
{
///
- /// API client is mainly responible for making the HTTP call to the API backend.
+ /// API client is mainly responsible for making the HTTP call to the API backend.
///
public class ApiClient
{
diff --git a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/docs/StoreApi.md b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/docs/StoreApi.md
index 76334b0ca4d..58e85fb6eb6 100644
--- a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/docs/StoreApi.md
@@ -140,7 +140,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs
index 3390bbbcaba..c23c321d637 100644
--- a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Api/StoreApi.cs
@@ -23,7 +23,7 @@ namespace Org.OpenAPITools.Api
/// Dictionary<string, int?>
Dictionary GetInventory ();
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// ID of pet that needs to be fetched
/// Order
@@ -159,7 +159,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// ID of pet that needs to be fetched
/// Order
diff --git a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs
index 095f97997ec..5903fde02ad 100644
--- a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs
+++ b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/ApiClient.cs
@@ -14,7 +14,7 @@ using RestSharp.Extensions;
namespace Org.OpenAPITools.Client
{
///
- /// API client is mainly responible for making the HTTP call to the API backend.
+ /// API client is mainly responsible for making the HTTP call to the API backend.
///
public class ApiClient
{
diff --git a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/Configuration.cs b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/Configuration.cs
index 8cac9c7d9db..7546607fa99 100644
--- a/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/Configuration.cs
+++ b/samples/client/petstore/csharp-dotnet2/SwaggerClientTest/Lib/SwaggerClient/src/main/CsharpDotNet2/Org/OpenAPITools/Client/Configuration.cs
@@ -84,7 +84,7 @@ namespace Org.OpenAPITools.Client
private static string _dateTimeFormat = ISO8601_DATETIME_FORMAT;
///
- /// Gets or sets the the date time format used when serializing in the ApiClient
+ /// Gets or sets the date time format used when serializing in the ApiClient
/// By default, it's set to ISO 8601 - "o", for others see:
/// https://msdn.microsoft.com/en-us/library/az4se3k1(v=vs.110).aspx
/// and https://msdn.microsoft.com/en-us/library/8kb3ddd4(v=vs.110).aspx
diff --git a/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/ApiClient.cs b/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/ApiClient.cs
index 4f68a59871e..fe4dcf5a24d 100644
--- a/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/ApiClient.cs
+++ b/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/ApiClient.cs
@@ -157,7 +157,7 @@ namespace Org.OpenAPITools.Client
}
}
///
- /// Provides a default implementation of an Api client (both synchronous and asynchronous implementatios),
+ /// Provides a default implementation of an Api client (both synchronous and asynchronous implementations),
/// encapsulating general REST accessor use cases.
///
public partial class ApiClient : ISynchronousClient, IAsynchronousClient
@@ -166,7 +166,7 @@ namespace Org.OpenAPITools.Client
///
/// Specifies the settings on a object.
- /// These settings can be adjusted to accomodate custom serialization rules.
+ /// These settings can be adjusted to accommodate custom serialization rules.
///
public JsonSerializerSettings SerializerSettings { get; set; } = new JsonSerializerSettings
{
diff --git a/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/Configuration.cs b/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/Configuration.cs
index 896bd754ea5..897d5a1c666 100644
--- a/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/Configuration.cs
+++ b/samples/client/petstore/csharp-netcore-functions/generatedSrc/Client/Configuration.cs
@@ -71,7 +71,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets or sets the API key based on the authentication name.
- /// This is the key and value comprising the "secret" for acessing an API.
+ /// This is the key and value comprising the "secret" for accessing an API.
///
/// The API key.
private IDictionary _apiKey;
@@ -425,7 +425,7 @@ namespace Org.OpenAPITools.Client
}
else
{
- // use defualt value
+ // use default value
url = url.Replace("{" + variable.Key + "}", (string)serverVariables["default_value"]);
}
}
diff --git a/samples/client/petstore/csharp-netcore-functions/git_push.sh b/samples/client/petstore/csharp-netcore-functions/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/csharp-netcore-functions/git_push.sh
+++ b/samples/client/petstore/csharp-netcore-functions/git_push.sh
@@ -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
diff --git a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/ApiClient.cs b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/ApiClient.cs
index 4f68a59871e..fe4dcf5a24d 100644
--- a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/ApiClient.cs
+++ b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/ApiClient.cs
@@ -157,7 +157,7 @@ namespace Org.OpenAPITools.Client
}
}
///
- /// Provides a default implementation of an Api client (both synchronous and asynchronous implementatios),
+ /// Provides a default implementation of an Api client (both synchronous and asynchronous implementations),
/// encapsulating general REST accessor use cases.
///
public partial class ApiClient : ISynchronousClient, IAsynchronousClient
@@ -166,7 +166,7 @@ namespace Org.OpenAPITools.Client
///
/// Specifies the settings on a object.
- /// These settings can be adjusted to accomodate custom serialization rules.
+ /// These settings can be adjusted to accommodate custom serialization rules.
///
public JsonSerializerSettings SerializerSettings { get; set; } = new JsonSerializerSettings
{
diff --git a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/Configuration.cs b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/Configuration.cs
index 896bd754ea5..897d5a1c666 100644
--- a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/Configuration.cs
+++ b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/Configuration.cs
@@ -71,7 +71,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets or sets the API key based on the authentication name.
- /// This is the key and value comprising the "secret" for acessing an API.
+ /// This is the key and value comprising the "secret" for accessing an API.
///
/// The API key.
private IDictionary _apiKey;
@@ -425,7 +425,7 @@ namespace Org.OpenAPITools.Client
}
else
{
- // use defualt value
+ // use default value
url = url.Replace("{" + variable.Key + "}", (string)serverVariables["default_value"]);
}
}
diff --git a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/IReadableConfiguration.cs b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
index 00bedba8ee2..cd8f3fdb1f3 100644
--- a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
+++ b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
@@ -47,7 +47,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets the date time format.
///
- /// Date time foramt.
+ /// Date time format.
string DateTimeFormat { get; }
///
diff --git a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/RequestOptions.cs
index c6b3ccc38f2..a6377408779 100644
--- a/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore-functions/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/FakeApi.md
index 46d135e359f..212d1d35c49 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/StoreApi.md
index 95bbe1b2f13..de4414feafc 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/docs/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Api/StoreApi.cs
index e01ed162589..e8bed0a150e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -75,7 +75,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -188,7 +188,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -631,7 +631,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -683,7 +683,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -697,7 +697,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Client/RequestOptions.cs
index 4c26cf69b24..f5e02e93f0f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-ConditionalSerialization/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/README.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/README.md
index 2ecf1cd41c8..b2a159fd0a9 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/README.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/README.md
@@ -216,7 +216,7 @@ Authentication schemes defined for the API:
- modelTests: true
- withXml:
-## [OpenApi Generator Parameteres](https://openapi-generator.tech/docs/generators/csharp-netcore)
+## [OpenApi Generator Parameters](https://openapi-generator.tech/docs/generators/csharp-netcore)
- allowUnicodeIdentifiers:
- apiName: Api
- caseInsensitiveResponseHeaders:
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/FakeApi.md
index c1202fdbf36..a179355d603 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/StoreApi.md
index 04c9407eb43..aa0a568fc52 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/apis/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/scripts/git_push.ps1 b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/scripts/git_push.ps1
index 0a2d4e52280..73ed35c2bb1 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/scripts/git_push.ps1
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/docs/scripts/git_push.ps1
@@ -49,7 +49,7 @@ Set-StrictMode -Version 3.0
if ($Help){
Write-Output "
This script will initialize a git repository, then add and commit all files.
- The local repository will then be pushed to your prefered git provider.
+ The local repository will then be pushed to your preferred git provider.
If the remote repository does not exist yet and you are using GitHub,
the repository will be created for you provided you have the GitHub CLI installed.
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/AnotherFakeApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
index 7c19f93d3d8..87be0ad41e0 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
@@ -240,7 +240,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -255,7 +255,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/DefaultApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/DefaultApi.cs
index 1f9ed0913df..74a3ab0165d 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/DefaultApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/DefaultApi.cs
@@ -214,7 +214,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -229,7 +229,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeApi.cs
index da538a367ba..56d7a03ec38 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeApi.cs
@@ -808,7 +808,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -823,7 +823,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -927,7 +927,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -942,7 +942,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1046,7 +1046,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1061,7 +1061,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1165,7 +1165,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1180,7 +1180,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1284,7 +1284,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1299,7 +1299,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1387,7 +1387,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1402,7 +1402,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1504,7 +1504,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1519,7 +1519,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1633,7 +1633,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1648,7 +1648,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1759,7 +1759,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1774,7 +1774,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1974,7 +1974,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1992,7 +1992,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2139,7 +2139,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2154,7 +2154,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2290,7 +2290,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2308,7 +2308,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2410,7 +2410,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2425,7 +2425,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2541,7 +2541,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2556,7 +2556,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2679,7 +2679,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2694,7 +2694,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
index c73a4501366..631e6abe154 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
@@ -252,7 +252,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -270,7 +270,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/PetApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/PetApi.cs
index d54ddb22b1d..b86139fcd5f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/PetApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/PetApi.cs
@@ -557,7 +557,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -578,7 +578,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -682,7 +682,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -700,7 +700,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -821,7 +821,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -842,7 +842,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -963,7 +963,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -984,7 +984,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1092,7 +1092,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1110,7 +1110,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1229,7 +1229,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1250,7 +1250,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1377,7 +1377,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1395,7 +1395,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1531,7 +1531,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1549,7 +1549,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1688,7 +1688,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1706,7 +1706,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/StoreApi.cs
index d09c3633b59..1d07247d8e6 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -101,7 +101,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -113,7 +113,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -125,7 +125,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// ID of pet that needs to be fetched
/// Cancellation Token to cancel the request.
@@ -324,7 +324,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -339,7 +339,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -435,7 +435,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -453,13 +453,13 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -476,7 +476,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -499,7 +499,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -553,7 +553,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -568,7 +568,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -680,7 +680,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -695,7 +695,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/UserApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/UserApi.cs
index 8e886e254d9..1d51468c105 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/UserApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Api/UserApi.cs
@@ -486,7 +486,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -501,7 +501,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -603,7 +603,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -720,7 +720,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -735,7 +735,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -825,7 +825,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -840,7 +840,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -940,7 +940,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -955,7 +955,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1067,7 +1067,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1082,7 +1082,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1161,7 +1161,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1176,7 +1176,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1285,7 +1285,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1300,7 +1300,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiException.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiException.cs
index 067639ab9ff..76274524017 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiException.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiException.cs
@@ -35,7 +35,7 @@ namespace Org.OpenAPITools.Client
public string RawContent { get; }
///
- /// Construct the ApiException from parts of the reponse
+ /// Construct the ApiException from parts of the response
///
///
///
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiResponse`1.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiResponse`1.cs
index 78a0047905c..36696f85be3 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiResponse`1.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/ApiResponse`1.cs
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Client
#endregion Properties
///
- /// Construct the reponse using an HttpResponseMessage
+ /// Construct the response using an HttpResponseMessage
///
///
///
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
index 0c4101dd74a..eb4b80c8741 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0-nrt/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
@@ -196,7 +196,7 @@ namespace Org.OpenAPITools.Client
foreach (var keyVal in httpSignatureHeader)
headerValuesList.Add(string.Format("{0}: {1}", keyVal.Key, keyVal.Value));
- //Concatinate headers value separated by new line
+ //Concatenate headers value separated by new line
var headerValuesString = string.Join("\n", headerValuesList);
var signatureStringHash = GetStringHash(HashAlgorithm.ToString(), headerValuesString);
string? headerSignatureStr = null;
@@ -324,7 +324,7 @@ namespace Org.OpenAPITools.Client
private byte[] ConvertToECDSAANS1Format(byte[] signedBytes)
{
var derBytes = new List();
- byte derLength = 68; //default lenght for ECDSA code signinged bit 0x44
+ byte derLength = 68; //default length for ECDSA code signing bit 0x44
byte rbytesLength = 32; //R length 0x20
byte sbytesLength = 32; //S length 0x20
var rBytes = new List();
@@ -359,7 +359,7 @@ namespace Org.OpenAPITools.Client
}
derBytes.Add(48); //start of the sequence 0x30
- derBytes.Add(derLength); //total length r lenth, type and r bytes
+ derBytes.Add(derLength); //total length r length, type and r bytes
derBytes.Add(2); //tag for integer
derBytes.Add(rbytesLength); //length of r
@@ -371,7 +371,7 @@ namespace Org.OpenAPITools.Client
return derBytes.ToArray();
}
- private RSACryptoServiceProvider? GetRSAProviderFromPemFile(String pemfile, SecureString? keyPassPharse = null)
+ private RSACryptoServiceProvider? GetRSAProviderFromPemFile(String pemfile, SecureString? keyPassPhrase = null)
{
const String pempubheader = "-----BEGIN PUBLIC KEY-----";
const String pempubfooter = "-----END PUBLIC KEY-----";
@@ -388,7 +388,7 @@ namespace Org.OpenAPITools.Client
if (isPrivateKeyFile)
{
- pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPharse);
+ pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPhrase);
if (pemkey == null)
return null;
@@ -398,7 +398,7 @@ namespace Org.OpenAPITools.Client
return null;
}
- private byte[]? ConvertPrivateKeyToBytes(String instr, SecureString? keyPassPharse = null)
+ private byte[]? ConvertPrivateKeyToBytes(String instr, SecureString? keyPassPhrase = null)
{
const String pemprivheader = "-----BEGIN RSA PRIVATE KEY-----";
const String pemprivfooter = "-----END RSA PRIVATE KEY-----";
@@ -446,12 +446,12 @@ namespace Org.OpenAPITools.Client
binkey = Convert.FromBase64String(encryptedstr);
}
catch (System.FormatException)
- { //data is not in base64 fromat
+ { //data is not in base64 format
return null;
}
- // TODO: what do we do here if keyPassPharse is null?
- byte[] deskey = GetEncryptedKey(salt, keyPassPharse!, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
+ // TODO: what do we do here if keyPassPhrase is null?
+ byte[] deskey = GetEncryptedKey(salt, keyPassPhrase!, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
if (deskey == null)
return null;
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/README.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/README.md
index c109d03e6ff..6c332bb5d1b 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/README.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/README.md
@@ -216,7 +216,7 @@ Authentication schemes defined for the API:
- modelTests: true
- withXml:
-## [OpenApi Generator Parameteres](https://openapi-generator.tech/docs/generators/csharp-netcore)
+## [OpenApi Generator Parameters](https://openapi-generator.tech/docs/generators/csharp-netcore)
- allowUnicodeIdentifiers:
- apiName: Api
- caseInsensitiveResponseHeaders:
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/FakeApi.md
index dd5e3225a65..f17e38282a0 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/StoreApi.md
index 04c9407eb43..aa0a568fc52 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/apis/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/scripts/git_push.ps1 b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/scripts/git_push.ps1
index 0a2d4e52280..73ed35c2bb1 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/scripts/git_push.ps1
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/docs/scripts/git_push.ps1
@@ -49,7 +49,7 @@ Set-StrictMode -Version 3.0
if ($Help){
Write-Output "
This script will initialize a git repository, then add and commit all files.
- The local repository will then be pushed to your prefered git provider.
+ The local repository will then be pushed to your preferred git provider.
If the remote repository does not exist yet and you are using GitHub,
the repository will be created for you provided you have the GitHub CLI installed.
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
index bfbb57aac81..428a326e69e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
@@ -225,7 +225,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -240,7 +240,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/DefaultApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/DefaultApi.cs
index 7877e961c27..78cd5681661 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/DefaultApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/DefaultApi.cs
@@ -200,7 +200,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -215,7 +215,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeApi.cs
index 23fd9c57a98..0f8c448ecd7 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeApi.cs
@@ -582,7 +582,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -597,7 +597,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -680,7 +680,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -695,7 +695,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -799,7 +799,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -814,7 +814,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -897,7 +897,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -912,7 +912,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -995,7 +995,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1010,7 +1010,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1098,7 +1098,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1113,7 +1113,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1215,7 +1215,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1230,7 +1230,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1344,7 +1344,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1359,7 +1359,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1470,7 +1470,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1485,7 +1485,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1679,7 +1679,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1697,7 +1697,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1844,7 +1844,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1859,7 +1859,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1986,7 +1986,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2004,7 +2004,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2106,7 +2106,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2121,7 +2121,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2237,7 +2237,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2252,7 +2252,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2375,7 +2375,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2390,7 +2390,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
index 05debff86ab..321be9fcde0 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
@@ -237,7 +237,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -255,7 +255,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/PetApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/PetApi.cs
index 8f01a7fc364..53546aadb16 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/PetApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/PetApi.cs
@@ -431,7 +431,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -452,7 +452,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -553,7 +553,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -571,7 +571,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -692,7 +692,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -713,7 +713,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -834,7 +834,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -855,7 +855,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -960,7 +960,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -978,7 +978,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1097,7 +1097,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1118,7 +1118,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1242,7 +1242,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1260,7 +1260,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1393,7 +1393,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1411,7 +1411,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1547,7 +1547,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1565,7 +1565,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/StoreApi.cs
index cee9bd767c6..e8a5a11078b 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -74,7 +74,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -86,7 +86,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -271,7 +271,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -286,7 +286,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -362,7 +362,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -380,13 +380,13 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -403,7 +403,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -426,7 +426,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -477,7 +477,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -492,7 +492,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -604,7 +604,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -619,7 +619,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/UserApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/UserApi.cs
index f117a118b3b..4c1b0c68468 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/UserApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Api/UserApi.cs
@@ -379,7 +379,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -394,7 +394,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -496,7 +496,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -511,7 +511,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -613,7 +613,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -628,7 +628,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -718,7 +718,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -733,7 +733,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -833,7 +833,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -848,7 +848,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -938,7 +938,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -953,7 +953,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1032,7 +1032,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1047,7 +1047,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1156,7 +1156,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1171,7 +1171,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiException.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiException.cs
index 5728b5976d9..fdd11dd19c9 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiException.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiException.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public string RawContent { get; }
///
- /// Construct the ApiException from parts of the reponse
+ /// Construct the ApiException from parts of the response
///
///
///
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs
index 85b2801ccbf..3bae0aaa6ab 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs
@@ -85,7 +85,7 @@ namespace Org.OpenAPITools.Client
#endregion Properties
///
- /// Construct the reponse using an HttpResponseMessage
+ /// Construct the response using an HttpResponseMessage
///
///
///
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
index c06ba4c50a0..2b5ac96e1cd 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-net6.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
@@ -194,7 +194,7 @@ namespace Org.OpenAPITools.Client
foreach (var keyVal in httpSignatureHeader)
headerValuesList.Add(string.Format("{0}: {1}", keyVal.Key, keyVal.Value));
- //Concatinate headers value separated by new line
+ //Concatenate headers value separated by new line
var headerValuesString = string.Join("\n", headerValuesList);
var signatureStringHash = GetStringHash(HashAlgorithm.ToString(), headerValuesString);
string headerSignatureStr = null;
@@ -322,7 +322,7 @@ namespace Org.OpenAPITools.Client
private byte[] ConvertToECDSAANS1Format(byte[] signedBytes)
{
var derBytes = new List();
- byte derLength = 68; //default lenght for ECDSA code signinged bit 0x44
+ byte derLength = 68; //default length for ECDSA code signing bit 0x44
byte rbytesLength = 32; //R length 0x20
byte sbytesLength = 32; //S length 0x20
var rBytes = new List();
@@ -357,7 +357,7 @@ namespace Org.OpenAPITools.Client
}
derBytes.Add(48); //start of the sequence 0x30
- derBytes.Add(derLength); //total length r lenth, type and r bytes
+ derBytes.Add(derLength); //total length r length, type and r bytes
derBytes.Add(2); //tag for integer
derBytes.Add(rbytesLength); //length of r
@@ -369,7 +369,7 @@ namespace Org.OpenAPITools.Client
return derBytes.ToArray();
}
- private RSACryptoServiceProvider GetRSAProviderFromPemFile(String pemfile, SecureString keyPassPharse = null)
+ private RSACryptoServiceProvider GetRSAProviderFromPemFile(String pemfile, SecureString keyPassPhrase = null)
{
const String pempubheader = "-----BEGIN PUBLIC KEY-----";
const String pempubfooter = "-----END PUBLIC KEY-----";
@@ -386,7 +386,7 @@ namespace Org.OpenAPITools.Client
if (isPrivateKeyFile)
{
- pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPharse);
+ pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPhrase);
if (pemkey == null)
return null;
@@ -396,7 +396,7 @@ namespace Org.OpenAPITools.Client
return null;
}
- private byte[] ConvertPrivateKeyToBytes(String instr, SecureString keyPassPharse = null)
+ private byte[] ConvertPrivateKeyToBytes(String instr, SecureString keyPassPhrase = null)
{
const String pemprivheader = "-----BEGIN RSA PRIVATE KEY-----";
const String pemprivfooter = "-----END RSA PRIVATE KEY-----";
@@ -444,12 +444,12 @@ namespace Org.OpenAPITools.Client
binkey = Convert.FromBase64String(encryptedstr);
}
catch (System.FormatException)
- { //data is not in base64 fromat
+ { //data is not in base64 format
return null;
}
- // TODO: what do we do here if keyPassPharse is null?
- byte[] deskey = GetEncryptedKey(salt, keyPassPharse, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
+ // TODO: what do we do here if keyPassPhrase is null?
+ byte[] deskey = GetEncryptedKey(salt, keyPassPhrase, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
if (deskey == null)
return null;
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/README.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/README.md
index 5680ae8cbc4..a8ac54da0c4 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/README.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/README.md
@@ -216,7 +216,7 @@ Authentication schemes defined for the API:
- modelTests: true
- withXml:
-## [OpenApi Generator Parameteres](https://openapi-generator.tech/docs/generators/csharp-netcore)
+## [OpenApi Generator Parameters](https://openapi-generator.tech/docs/generators/csharp-netcore)
- allowUnicodeIdentifiers:
- apiName: Api
- caseInsensitiveResponseHeaders:
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/FakeApi.md
index dd5e3225a65..f17e38282a0 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../../README.md#documentation-for-api-endpoints) [[Back to Model list]](../../README.md#documentation-for-models) [[Back to README]](../../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/StoreApi.md
index 04c9407eb43..aa0a568fc52 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/apis/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/scripts/git_push.ps1 b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/scripts/git_push.ps1
index 0a2d4e52280..73ed35c2bb1 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/scripts/git_push.ps1
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/docs/scripts/git_push.ps1
@@ -49,7 +49,7 @@ Set-StrictMode -Version 3.0
if ($Help){
Write-Output "
This script will initialize a git repository, then add and commit all files.
- The local repository will then be pushed to your prefered git provider.
+ The local repository will then be pushed to your preferred git provider.
If the remote repository does not exist yet and you are using GitHub,
the repository will be created for you provided you have the GitHub CLI installed.
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
index 59670fb4cbc..b2b9905d3a7 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/AnotherFakeApi.cs
@@ -225,7 +225,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -240,7 +240,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/DefaultApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/DefaultApi.cs
index ea2f1ced70b..2f874775c60 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/DefaultApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/DefaultApi.cs
@@ -200,7 +200,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -215,7 +215,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeApi.cs
index cad800bddfb..f9f02ecc219 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeApi.cs
@@ -582,7 +582,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -597,7 +597,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -680,7 +680,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -695,7 +695,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -799,7 +799,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -814,7 +814,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -897,7 +897,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -912,7 +912,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -995,7 +995,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1010,7 +1010,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1098,7 +1098,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1113,7 +1113,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1215,7 +1215,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1230,7 +1230,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1344,7 +1344,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1359,7 +1359,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1470,7 +1470,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1485,7 +1485,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1679,7 +1679,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1697,7 +1697,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1844,7 +1844,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1859,7 +1859,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1986,7 +1986,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2004,7 +2004,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2106,7 +2106,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2121,7 +2121,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2237,7 +2237,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2252,7 +2252,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -2375,7 +2375,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -2390,7 +2390,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
index 528e98484d8..4b51987ecd3 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/FakeClassnameTags123Api.cs
@@ -237,7 +237,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -255,7 +255,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/PetApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/PetApi.cs
index dda60de460d..c8249afbb48 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/PetApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/PetApi.cs
@@ -431,7 +431,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -452,7 +452,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -553,7 +553,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -571,7 +571,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -692,7 +692,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -713,7 +713,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -834,7 +834,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -855,7 +855,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -960,7 +960,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -978,7 +978,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1097,7 +1097,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1118,7 +1118,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1242,7 +1242,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1260,7 +1260,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1393,7 +1393,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1411,7 +1411,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1547,7 +1547,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1565,7 +1565,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/StoreApi.cs
index 0c0066afae7..a0be4ccdafb 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -74,7 +74,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -86,7 +86,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -271,7 +271,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -286,7 +286,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -362,7 +362,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -380,13 +380,13 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -403,7 +403,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -426,7 +426,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -477,7 +477,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -492,7 +492,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -604,7 +604,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -619,7 +619,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/UserApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/UserApi.cs
index 921dc7c29eb..554608a79aa 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/UserApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Api/UserApi.cs
@@ -379,7 +379,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -394,7 +394,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -496,7 +496,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -511,7 +511,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -613,7 +613,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -628,7 +628,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -718,7 +718,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -733,7 +733,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -833,7 +833,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -848,7 +848,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -938,7 +938,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -953,7 +953,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1032,7 +1032,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1047,7 +1047,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
}
@@ -1156,7 +1156,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while invoking ApiResponded.");
+ Logger.LogError(e, "An error occurred while invoking ApiResponded.");
}
}
@@ -1171,7 +1171,7 @@ namespace Org.OpenAPITools.Api
}
catch(Exception e)
{
- Logger.LogError(e, "An error occured while sending the request to the server.");
+ Logger.LogError(e, "An error occurred while sending the request to the server.");
throw;
}
} }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiException.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiException.cs
index 5728b5976d9..fdd11dd19c9 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiException.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiException.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public string RawContent { get; }
///
- /// Construct the ApiException from parts of the reponse
+ /// Construct the ApiException from parts of the response
///
///
///
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs
index 85b2801ccbf..3bae0aaa6ab 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/ApiResponse`1.cs
@@ -85,7 +85,7 @@ namespace Org.OpenAPITools.Client
#endregion Properties
///
- /// Construct the reponse using an HttpResponseMessage
+ /// Construct the response using an HttpResponseMessage
///
///
///
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
index c06ba4c50a0..2b5ac96e1cd 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-generichost-netstandard2.0/src/Org.OpenAPITools/Client/HttpSigningConfiguration.cs
@@ -194,7 +194,7 @@ namespace Org.OpenAPITools.Client
foreach (var keyVal in httpSignatureHeader)
headerValuesList.Add(string.Format("{0}: {1}", keyVal.Key, keyVal.Value));
- //Concatinate headers value separated by new line
+ //Concatenate headers value separated by new line
var headerValuesString = string.Join("\n", headerValuesList);
var signatureStringHash = GetStringHash(HashAlgorithm.ToString(), headerValuesString);
string headerSignatureStr = null;
@@ -322,7 +322,7 @@ namespace Org.OpenAPITools.Client
private byte[] ConvertToECDSAANS1Format(byte[] signedBytes)
{
var derBytes = new List();
- byte derLength = 68; //default lenght for ECDSA code signinged bit 0x44
+ byte derLength = 68; //default length for ECDSA code signing bit 0x44
byte rbytesLength = 32; //R length 0x20
byte sbytesLength = 32; //S length 0x20
var rBytes = new List();
@@ -357,7 +357,7 @@ namespace Org.OpenAPITools.Client
}
derBytes.Add(48); //start of the sequence 0x30
- derBytes.Add(derLength); //total length r lenth, type and r bytes
+ derBytes.Add(derLength); //total length r length, type and r bytes
derBytes.Add(2); //tag for integer
derBytes.Add(rbytesLength); //length of r
@@ -369,7 +369,7 @@ namespace Org.OpenAPITools.Client
return derBytes.ToArray();
}
- private RSACryptoServiceProvider GetRSAProviderFromPemFile(String pemfile, SecureString keyPassPharse = null)
+ private RSACryptoServiceProvider GetRSAProviderFromPemFile(String pemfile, SecureString keyPassPhrase = null)
{
const String pempubheader = "-----BEGIN PUBLIC KEY-----";
const String pempubfooter = "-----END PUBLIC KEY-----";
@@ -386,7 +386,7 @@ namespace Org.OpenAPITools.Client
if (isPrivateKeyFile)
{
- pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPharse);
+ pemkey = ConvertPrivateKeyToBytes(pemstr, keyPassPhrase);
if (pemkey == null)
return null;
@@ -396,7 +396,7 @@ namespace Org.OpenAPITools.Client
return null;
}
- private byte[] ConvertPrivateKeyToBytes(String instr, SecureString keyPassPharse = null)
+ private byte[] ConvertPrivateKeyToBytes(String instr, SecureString keyPassPhrase = null)
{
const String pemprivheader = "-----BEGIN RSA PRIVATE KEY-----";
const String pemprivfooter = "-----END RSA PRIVATE KEY-----";
@@ -444,12 +444,12 @@ namespace Org.OpenAPITools.Client
binkey = Convert.FromBase64String(encryptedstr);
}
catch (System.FormatException)
- { //data is not in base64 fromat
+ { //data is not in base64 format
return null;
}
- // TODO: what do we do here if keyPassPharse is null?
- byte[] deskey = GetEncryptedKey(salt, keyPassPharse, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
+ // TODO: what do we do here if keyPassPhrase is null?
+ byte[] deskey = GetEncryptedKey(salt, keyPassPhrase, 1, 2); // count=1 (for OpenSSL implementation); 2 iterations to get at least 24 bytes
if (deskey == null)
return null;
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/FakeApi.md
index 53a8b4e4eb4..3f38af8889e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/FakeApi.md
@@ -1169,7 +1169,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/StoreApi.md
index 449b73a0a51..7ed28712f89 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/docs/StoreApi.md
@@ -202,7 +202,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs
index 1af712abb4d..f0b08739891 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs
@@ -36,7 +36,7 @@ namespace Org.OpenAPITools.Test
private PetApi instance;
private long petId = 11088;
- private long notExsistentPetId = 99999;
+ private long notExistentPetId = 99999;
///
/// Create a Pet object
@@ -206,7 +206,7 @@ namespace Org.OpenAPITools.Test
}
///
- /// Test GetPetById on an not existent Id
+ /// Test GetPetById on a non-existent Id
///
[Fact]
public void TestGetPetById_TestException()
@@ -215,7 +215,7 @@ namespace Org.OpenAPITools.Test
var exception = Assert.Throws(() =>
{
- petApi.GetPetById(notExsistentPetId);
+ petApi.GetPetById(notExistentPetId);
});
Assert.IsType(exception);
@@ -233,7 +233,7 @@ namespace Org.OpenAPITools.Test
Assert.IsType(response);
StreamReader reader = new StreamReader(response);
// the following will fail for sure
- //Assert.Equal("someting", reader.ReadToEnd());
+ //Assert.Equal("something", reader.ReadToEnd());
}
*/
@@ -273,7 +273,7 @@ namespace Org.OpenAPITools.Test
{
PetApi petApi = new PetApi();
petApi.ExceptionFactory = null;
- var response = petApi.GetPetByIdWithHttpInfoAsync(notExsistentPetId).Result;
+ var response = petApi.GetPetByIdWithHttpInfoAsync(notExistentPetId).Result;
Pet result = response.Data;
Assert.IsType>(response);
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Api/StoreApi.cs
index 37ab94173a0..c3378fb12aa 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -71,7 +71,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -82,7 +82,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -163,7 +163,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -641,7 +641,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -653,7 +653,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -693,7 +693,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -706,7 +706,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Client/RequestOptions.cs
index 70b67cb2590..50e0c8e017f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-httpclient/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/FakeApi.md
index 46d135e359f..212d1d35c49 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/StoreApi.md
index 95bbe1b2f13..de4414feafc 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/docs/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Api/StoreApi.cs
index e01ed162589..e8bed0a150e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -75,7 +75,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -188,7 +188,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -631,7 +631,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -683,7 +683,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -697,7 +697,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Client/RequestOptions.cs
index 4c26cf69b24..f5e02e93f0f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net47/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/FakeApi.md
index 46d135e359f..212d1d35c49 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/StoreApi.md
index 95bbe1b2f13..de4414feafc 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/docs/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Api/StoreApi.cs
index e01ed162589..e8bed0a150e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -75,7 +75,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -188,7 +188,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -631,7 +631,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -683,7 +683,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -697,7 +697,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Client/RequestOptions.cs
index 4c26cf69b24..f5e02e93f0f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net48/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/FakeApi.md
index 46d135e359f..212d1d35c49 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/StoreApi.md
index 95bbe1b2f13..de4414feafc 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/docs/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Api/StoreApi.cs
index e01ed162589..e8bed0a150e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -75,7 +75,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -188,7 +188,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -631,7 +631,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -683,7 +683,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -697,7 +697,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Client/RequestOptions.cs
index 4c26cf69b24..f5e02e93f0f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient-net5.0/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/FakeApi.md
index 46d135e359f..212d1d35c49 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/StoreApi.md
index 95bbe1b2f13..de4414feafc 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/docs/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs
index cce6e896f05..04bbe475580 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Api/PetApiTests.cs
@@ -210,7 +210,7 @@ namespace Org.OpenAPITools.Test
Assert.IsType(response);
StreamReader reader = new StreamReader(response);
// the following will fail for sure
- //Assert.Equal("someting", reader.ReadToEnd());
+ //Assert.Equal("something", reader.ReadToEnd());
}
*/
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/JSONComposedSchemaTests.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/JSONComposedSchemaTests.cs
index 59729091907..00efbb9d160 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/JSONComposedSchemaTests.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/JSONComposedSchemaTests.cs
@@ -152,7 +152,7 @@ namespace Org.OpenAPITools.Test
}
///
- /// Test additonal properties
+ /// Test additional properties
///
[Fact]
public void TestAdditionalProperties()
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Model/PetTests.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Model/PetTests.cs
index 927c21ee4be..d514e9a043c 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Model/PetTests.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools.Test/Model/PetTests.cs
@@ -106,12 +106,12 @@ namespace Org.OpenAPITools.Test
Pet p1 = new Pet(name: "Csharp test", photoUrls: new List { "http://petstore.com/csharp_test" });
Assert.Equal("{\"name\":\"Csharp test\",\"photoUrls\":[\"http://petstore.com/csharp_test\"]}", JsonConvert.SerializeObject(p1));
- // test additonal properties (serialization)
+ // test additional properties (serialization)
Pet p2 = new Pet(name: "Csharp test", photoUrls: new List { "http://petstore.com/csharp_test" });
p2.AdditionalProperties.Add("hello", "world");
Assert.Equal("{\"name\":\"Csharp test\",\"photoUrls\":[\"http://petstore.com/csharp_test\"],\"hello\":\"world\"}", JsonConvert.SerializeObject(p2));
- // test additonal properties (deserialization)
+ // test additional properties (deserialization)
Pet p3 = JsonConvert.DeserializeObject("{\"name\":\"Csharp test\",\"photoUrls\":[\"http://petstore.com/csharp_test\"],\"hello\":\"world\",\"int\":123}");
Assert.Equal("Csharp test", p3.Name);
Assert.Equal("world", p3.AdditionalProperties["hello"]);
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs
index e01ed162589..e8bed0a150e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -75,7 +75,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -188,7 +188,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -631,7 +631,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -683,7 +683,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -697,7 +697,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Client/RequestOptions.cs
index 4c26cf69b24..f5e02e93f0f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Org.OpenAPITools.nuspec b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
index b05e013ebc5..130ebd5b7f5 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClient/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
@@ -12,7 +12,7 @@
$author$
+ users to easily find other packages by the same owners. -->
$author$
false
false
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/FakeApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/FakeApi.md
index 46d135e359f..212d1d35c49 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/FakeApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/FakeApi.md
@@ -1121,7 +1121,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/StoreApi.md
index 95bbe1b2f13..de4414feafc 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/docs/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Api/StoreApi.cs
index e01ed162589..e8bed0a150e 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -75,7 +75,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -188,7 +188,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -631,7 +631,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -683,7 +683,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -697,7 +697,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Client/RequestOptions.cs
index 4c26cf69b24..f5e02e93f0f 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Org.OpenAPITools.nuspec b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
index 4200b72d479..678c8dac497 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCore/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
@@ -12,7 +12,7 @@
$author$
+ users to easily find other packages by the same owners. -->
$author$
false
false
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/docs/StoreApi.md b/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/docs/StoreApi.md
index 019ff47ee0c..b8d93abcd2a 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/docs/StoreApi.md
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/docs/StoreApi.md
@@ -194,7 +194,7 @@ This endpoint does not need any parameter.
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
### Example
```csharp
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Api/StoreApi.cs
index dd8faec043e..3fb02496f77 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -75,7 +75,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -87,7 +87,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -175,7 +175,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -188,7 +188,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -618,7 +618,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -631,7 +631,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -683,7 +683,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -697,7 +697,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Client/RequestOptions.cs b/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Client/RequestOptions.cs
index aef6b76e956..20366c4e7cc 100644
--- a/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Client/RequestOptions.cs
+++ b/samples/client/petstore/csharp-netcore/OpenAPIClientCoreAndNet47/src/Org.OpenAPITools/Client/RequestOptions.cs
@@ -33,7 +33,7 @@ namespace Org.OpenAPITools.Client
public Multimap QueryParameters { get; set; }
///
- /// Header parameters to be applied to to the request.
+ /// Header parameters to be applied to the request.
/// Keys may have 1 or more values associated.
///
public Multimap HeaderParameters { get; set; }
diff --git a/samples/client/petstore/csharp/OpenAPIClient/docs/FakeApi.md b/samples/client/petstore/csharp/OpenAPIClient/docs/FakeApi.md
index 426116d6367..73edec3b9d1 100644
--- a/samples/client/petstore/csharp/OpenAPIClient/docs/FakeApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClient/docs/FakeApi.md
@@ -1123,7 +1123,7 @@ void (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#)
[[Back to API list]](../README.md#documentation-for-api-endpoints)
diff --git a/samples/client/petstore/csharp/OpenAPIClient/docs/StoreApi.md b/samples/client/petstore/csharp/OpenAPIClient/docs/StoreApi.md
index 3a452bc4d69..f38f7518673 100644
--- a/samples/client/petstore/csharp/OpenAPIClient/docs/StoreApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClient/docs/StoreApi.md
@@ -170,7 +170,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/csharp/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs
index 576706c3d2c..7450a0aa302 100644
--- a/samples/client/petstore/csharp/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp/OpenAPIClient/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -80,7 +80,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -157,7 +157,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -575,7 +575,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -587,7 +587,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -642,7 +642,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -656,7 +656,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet35/build.sh b/samples/client/petstore/csharp/OpenAPIClientNet35/build.sh
index 979703be7f0..62b1cd3f497 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet35/build.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientNet35/build.sh
@@ -5,7 +5,7 @@
frameworkVersion=net35
-# sdk must match installed framworks under PREFIX/lib/mono/[value]
+# sdk must match installed frameworks under PREFIX/lib/mono/[value]
sdk=4
# langversion refers to C# language features. see man mcs for details.
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet35/docs/FakeApi.md b/samples/client/petstore/csharp/OpenAPIClientNet35/docs/FakeApi.md
index 2953700acb8..47853770985 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet35/docs/FakeApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNet35/docs/FakeApi.md
@@ -882,7 +882,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#)
[[Back to API list]](../README.md#documentation-for-api-endpoints)
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet35/docs/StoreApi.md b/samples/client/petstore/csharp/OpenAPIClientNet35/docs/StoreApi.md
index 57247772d4f..ae123168a11 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet35/docs/StoreApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNet35/docs/StoreApi.md
@@ -168,7 +168,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet35/git_push.sh b/samples/client/petstore/csharp/OpenAPIClientNet35/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet35/git_push.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientNet35/git_push.sh
@@ -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
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Api/StoreApi.cs
index 305632deb67..1d7e5a84940 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -80,7 +80,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -348,7 +348,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -360,7 +360,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Client/IReadableConfiguration.cs b/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
index 23e1a0c2e19..43ed169c6a1 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
@@ -45,7 +45,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets the date time format.
///
- /// Date time foramt.
+ /// Date time format.
string DateTimeFormat { get; }
///
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Org.OpenAPITools.nuspec b/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
index c9ccbe1a824..c2528caadb9 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
+++ b/samples/client/petstore/csharp/OpenAPIClientNet35/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
@@ -12,7 +12,7 @@
$author$
+ users to easily find other packages by the same owners. -->
$author$
false
false
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet40/build.sh b/samples/client/petstore/csharp/OpenAPIClientNet40/build.sh
index 25d8bff1a0b..bd7ed61518c 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet40/build.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientNet40/build.sh
@@ -5,7 +5,7 @@
frameworkVersion=net40
-# sdk must match installed framworks under PREFIX/lib/mono/[value]
+# sdk must match installed frameworks under PREFIX/lib/mono/[value]
sdk=4
# langversion refers to C# language features. see man mcs for details.
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet40/docs/FakeApi.md b/samples/client/petstore/csharp/OpenAPIClientNet40/docs/FakeApi.md
index 2953700acb8..47853770985 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet40/docs/FakeApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNet40/docs/FakeApi.md
@@ -882,7 +882,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#)
[[Back to API list]](../README.md#documentation-for-api-endpoints)
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet40/docs/StoreApi.md b/samples/client/petstore/csharp/OpenAPIClientNet40/docs/StoreApi.md
index 57247772d4f..ae123168a11 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet40/docs/StoreApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNet40/docs/StoreApi.md
@@ -168,7 +168,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet40/git_push.sh b/samples/client/petstore/csharp/OpenAPIClientNet40/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet40/git_push.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientNet40/git_push.sh
@@ -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
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Api/StoreApi.cs
index 8bb8873826a..a8b3b38b021 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -80,7 +80,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -348,7 +348,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -360,7 +360,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Client/IReadableConfiguration.cs b/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
index 23e1a0c2e19..43ed169c6a1 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
@@ -45,7 +45,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets the date time format.
///
- /// Date time foramt.
+ /// Date time format.
string DateTimeFormat { get; }
///
diff --git a/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Org.OpenAPITools.nuspec b/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
index c9ccbe1a824..c2528caadb9 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
+++ b/samples/client/petstore/csharp/OpenAPIClientNet40/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
@@ -12,7 +12,7 @@
$author$
+ users to easily find other packages by the same owners. -->
$author$
false
false
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/FakeApi.md b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/FakeApi.md
index 2953700acb8..47853770985 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/FakeApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/FakeApi.md
@@ -882,7 +882,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#)
[[Back to API list]](../README.md#documentation-for-api-endpoints)
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/StoreApi.md b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/StoreApi.md
index 57247772d4f..ae123168a11 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/StoreApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/docs/StoreApi.md
@@ -168,7 +168,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/git_push.sh b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/git_push.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/git_push.sh
@@ -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
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Api/StoreApi.cs
index a6e51e8e392..e3a3ffbfc98 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -80,7 +80,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -157,7 +157,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -575,7 +575,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -587,7 +587,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -642,7 +642,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -656,7 +656,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Client/IReadableConfiguration.cs b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
index 23e1a0c2e19..43ed169c6a1 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNetCoreProject/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
@@ -45,7 +45,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets the date time format.
///
- /// Date time foramt.
+ /// Date time format.
string DateTimeFormat { get; }
///
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/FakeApi.md b/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/FakeApi.md
index 2953700acb8..47853770985 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/FakeApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/FakeApi.md
@@ -882,7 +882,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#)
[[Back to API list]](../README.md#documentation-for-api-endpoints)
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/StoreApi.md b/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/StoreApi.md
index 57247772d4f..ae123168a11 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/StoreApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientNetStandard/docs/StoreApi.md
@@ -168,7 +168,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetStandard/git_push.sh b/samples/client/petstore/csharp/OpenAPIClientNetStandard/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetStandard/git_push.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientNetStandard/git_push.sh
@@ -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
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Api/StoreApi.cs
index a6e51e8e392..e3a3ffbfc98 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -80,7 +80,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -157,7 +157,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -575,7 +575,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -587,7 +587,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -642,7 +642,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -656,7 +656,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Client/IReadableConfiguration.cs b/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
index 23e1a0c2e19..43ed169c6a1 100644
--- a/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientNetStandard/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
@@ -45,7 +45,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets the date time format.
///
- /// Date time foramt.
+ /// Date time format.
string DateTimeFormat { get; }
///
diff --git a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/build.sh b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/build.sh
index f178f97386a..ee26741580f 100644
--- a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/build.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/build.sh
@@ -5,7 +5,7 @@
frameworkVersion=net45
-# sdk must match installed framworks under PREFIX/lib/mono/[value]
+# sdk must match installed frameworks under PREFIX/lib/mono/[value]
sdk=4.5.2-api
# langversion refers to C# language features. see man mcs for details.
diff --git a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/FakeApi.md b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/FakeApi.md
index 2953700acb8..47853770985 100644
--- a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/FakeApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/FakeApi.md
@@ -882,7 +882,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
[[Back to top]](#)
[[Back to API list]](../README.md#documentation-for-api-endpoints)
diff --git a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/StoreApi.md b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/StoreApi.md
index 57247772d4f..ae123168a11 100644
--- a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/StoreApi.md
+++ b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/docs/StoreApi.md
@@ -168,7 +168,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/git_push.sh b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/git_push.sh
+++ b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/git_push.sh
@@ -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
diff --git a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Api/StoreApi.cs b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Api/StoreApi.cs
index afd12d05cb9..d05925d2e45 100644
--- a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Api/StoreApi.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Api/StoreApi.cs
@@ -69,7 +69,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -80,7 +80,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -157,7 +157,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -169,7 +169,7 @@ namespace Org.OpenAPITools.Api
/// 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
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -575,7 +575,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -587,7 +587,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -642,7 +642,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
@@ -656,7 +656,7 @@ namespace Org.OpenAPITools.Api
}
///
- /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ /// Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
///
/// Thrown when fails to make API call
/// ID of pet that needs to be fetched
diff --git a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Client/IReadableConfiguration.cs b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
index 23e1a0c2e19..43ed169c6a1 100644
--- a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
+++ b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Client/IReadableConfiguration.cs
@@ -45,7 +45,7 @@ namespace Org.OpenAPITools.Client
///
/// Gets the date time format.
///
- /// Date time foramt.
+ /// Date time format.
string DateTimeFormat { get; }
///
diff --git a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Org.OpenAPITools.nuspec b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
index 49a1278cf4d..a68da9335f3 100644
--- a/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
+++ b/samples/client/petstore/csharp/OpenAPIClientWithPropertyChanged/src/Org.OpenAPITools/Org.OpenAPITools.nuspec
@@ -12,7 +12,7 @@
$author$
+ users to easily find other packages by the same owners. -->
$author$
false
false
diff --git a/samples/client/petstore/eiffel/docs/STORE_API.md b/samples/client/petstore/eiffel/docs/STORE_API.md
index d8c32e82aa2..369cde8bce2 100644
--- a/samples/client/petstore/eiffel/docs/STORE_API.md
+++ b/samples/client/petstore/eiffel/docs/STORE_API.md
@@ -73,7 +73,7 @@ This endpoint does not need any parameter.
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
### Parameters
diff --git a/samples/client/petstore/eiffel/gitpush.sh b/samples/client/petstore/eiffel/gitpush.sh
index ed374619b13..ae01b182ae9 100644
--- a/samples/client/petstore/eiffel/gitpush.sh
+++ b/samples/client/petstore/eiffel/gitpush.sh
@@ -36,7 +36,7 @@ git_remote=`git remote`
if [ "$git_remote" = "" ]; then # git remote not defined
if [ "$GIT_TOKEN" = "" ]; then
- echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git crediential in your environment."
+ echo "[INFO] \$GIT_TOKEN (environment variable) is not set. Using the git credential in your environment."
git remote add origin https://github.com/${git_user_id}/${git_repo_id}.git
else
git remote add origin https://${git_user_id}:${GIT_TOKEN}@github.com/${git_user_id}/${git_repo_id}.git
diff --git a/samples/client/petstore/eiffel/src/api/store_api.e b/samples/client/petstore/eiffel/src/api/store_api.e
index 40f9ce6bd74..ad376c23c07 100644
--- a/samples/client/petstore/eiffel/src/api/store_api.e
+++ b/samples/client/petstore/eiffel/src/api/store_api.e
@@ -90,7 +90,7 @@ feature -- API Access
order_by_id (order_id: INTEGER_64): detachable ORDER
-- 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
--
-- argument: order_id ID of pet that needs to be fetched (required)
--
diff --git a/samples/client/petstore/eiffel/src/api_client.e b/samples/client/petstore/eiffel/src/api_client.e
index 068e94e68a8..b21198bfbe5 100644
--- a/samples/client/petstore/eiffel/src/api_client.e
+++ b/samples/client/petstore/eiffel/src/api_client.e
@@ -49,7 +49,7 @@ feature -- Access
-- base path.
authentications: STRING_TABLE [AUTHENTICATION]
- -- autentication table.
+ -- authentication table.
feature -- Status Report
@@ -139,7 +139,7 @@ feature -- Helper: OAuth Authentication
feature -- Query Parameter Helpers
parameter_to_tuple (a_collection_format, a_name: STRING; a_value: detachable ANY): LIST [TUPLE [name: STRING; value: STRING]]
- -- A list of tuples with name and valule.
+ -- A list of tuples with name and value.
-- collectionFormat collection format (e.g. csv, tsv)
-- name Name
-- value Value
@@ -201,7 +201,7 @@ feature -- Query Parameter Helpers
parameter_to_string (a_param: detachable ANY): STRING
- -- return the string representation of the givien object `a_param'.
+ -- return the string representation of the given object `a_param'.
do
if a_param = Void then
Result := ""
@@ -248,7 +248,7 @@ feature -- Query Parameter Helpers
-- dateTime string date-time As defined by date-time - RFC3339
Result := date_time.date.debug_output
elseif attached {STRING_32} a_param as str_32 then
- -- TODO check if this is a good convertion.
+ -- TODO check if this is a good conversion.
Result := str_32.to_string_8
elseif attached {STRING_8} a_param as str_8 then
Result := str_8
@@ -335,7 +335,7 @@ feature -- HTTP client: call api
-- Execute an HTTP request with the given options.
-- Relative path `a_path'
-- Method `a_method' "GET", "HEAD", "OPTIONS", "POST", "PUT", "PATCH" and "DELETE"
- -- A request `a_request' wth
+ -- A request `a_request' with
-- The query parameters: `query_params'.
-- The Header parameters: `header_params'.
-- The Request Body: `body' could be Void, object to be serialized using the serializer function `a_serializer' with a given content_type.
@@ -372,7 +372,7 @@ feature -- HTTP client: call api
elseif l_content_type.is_case_insensitive_equal ("application/x-www-form-urlencoded") then
add_form_data (l_context_executor, a_request.form_params)
elseif l_content_type.is_case_insensitive_equal ("multipart/form-data") then
- -- add_mulipart_data (l_context_executor, a_form_params, l_content_type)
+ -- add_multipart_data (l_context_executor, a_form_params, l_content_type)
-- here we need a way to identify files.
elseif a_request.body = Void then
if a_method.is_case_insensitive_equal ("DELETE") then
@@ -409,7 +409,7 @@ feature -- HTTP client: call api
build_url (a_path: STRING_8; a_query_params: LIST [TUPLE [name: STRING; value: STRING]]): STRING_8
- -- Build a relatative url to `base_path' with `a_path' and a list of
+ -- Build a relative url to `base_path' with `a_path' and a list of
-- query parameters `a_query_params'.
local
l_query: STRING
diff --git a/samples/client/petstore/eiffel/src/framework/auth/http_basic_auth.e b/samples/client/petstore/eiffel/src/framework/auth/http_basic_auth.e
index 531384f2671..958f79c80ec 100644
--- a/samples/client/petstore/eiffel/src/framework/auth/http_basic_auth.e
+++ b/samples/client/petstore/eiffel/src/framework/auth/http_basic_auth.e
@@ -55,7 +55,7 @@ feature -- Access
attached user_name as l_username and then
attached password as l_password
then
- -- TODO check if this convertion it's ok.
+ -- TODO check if this conversion it's ok.
a_header_params.force ("Basic " + (create {BASE64}).encoded_string (l_username.to_string_8 + ":" + l_password.to_string_8) , "Authorization")
end
end
diff --git a/samples/client/petstore/eiffel/src/framework/auth/oauth.e b/samples/client/petstore/eiffel/src/framework/auth/oauth.e
index 9d65636b460..dc8648eac7f 100644
--- a/samples/client/petstore/eiffel/src/framework/auth/oauth.e
+++ b/samples/client/petstore/eiffel/src/framework/auth/oauth.e
@@ -37,7 +37,7 @@ feature -- Change Element
-- .
do
if attached access_token as l_access_token then
- -- TODO check if this convertion is ok.
+ -- TODO check if this conversion is ok.
a_header_params.force ("Bearer " + l_access_token.to_string_8,"Authorization" )
end
end
diff --git a/samples/client/petstore/eiffel/src/framework/serialization/api_deserializer.e b/samples/client/petstore/eiffel/src/framework/serialization/api_deserializer.e
index a986b8e7f35..fe52a9208cc 100644
--- a/samples/client/petstore/eiffel/src/framework/serialization/api_deserializer.e
+++ b/samples/client/petstore/eiffel/src/framework/serialization/api_deserializer.e
@@ -19,7 +19,7 @@ class
feature -- Access
deserializer (f: FUNCTION [TUPLE [content_type:READABLE_STRING_8; body:READABLE_STRING_8; type:TYPE [detachable ANY]], detachable ANY]; a_content_type: READABLE_STRING_8; a_body: READABLE_STRING_8; a_type:TYPE [detachable ANY]): detachable ANY
- -- From a given response deserialize body `a_body' with conent_type `a_content_type' to a target object of type `a_type'.
+ -- From a given response deserialize body `a_body' with content_type `a_content_type' to a target object of type `a_type'.
do
Result := f.item ([a_content_type, a_body, a_type])
end
diff --git a/samples/client/petstore/eiffel/src/framework/serialization/api_serializer.e b/samples/client/petstore/eiffel/src/framework/serialization/api_serializer.e
index 0afafdf843f..759bf4d5d37 100644
--- a/samples/client/petstore/eiffel/src/framework/serialization/api_serializer.e
+++ b/samples/client/petstore/eiffel/src/framework/serialization/api_serializer.e
@@ -22,7 +22,7 @@ feature -- Access
serializer (f: FUNCTION [TUPLE [content_type:READABLE_STRING_8; type:ANY],READABLE_STRING_8]; a_content_type: READABLE_STRING_8; a_type: ANY): STRING_8
-- Serialize an object of type `a_type' using the content type `a_content_type'.
do
- -- TODO check if this convertion it's ok.
+ -- TODO check if this conversion it's ok.
Result := f.item ([a_content_type, a_type]).to_string_8
end
end
diff --git a/samples/client/petstore/eiffel/src/framework/serialization/json_basic_reflector_deserializer.e b/samples/client/petstore/eiffel/src/framework/serialization/json_basic_reflector_deserializer.e
index 3a6f2b04c8b..85dd642d485 100644
--- a/samples/client/petstore/eiffel/src/framework/serialization/json_basic_reflector_deserializer.e
+++ b/samples/client/petstore/eiffel/src/framework/serialization/json_basic_reflector_deserializer.e
@@ -282,7 +282,7 @@ feature {NONE} -- Helpers: Object
l_field_static_types: like fields_infos
do
if Result = Void then
- -- Updated to use the Type info insted of the type_field in JSON.
+ -- Updated to use the Type info instead of the type_field in JSON.
-- fn.same_string ({JSON_REFLECTOR_SERIALIZER}.type_field_name
if attached a_type then
l_type_name := a_type.name.to_string_8
diff --git a/samples/client/petstore/eiffel/test/apis/store_api_test.e b/samples/client/petstore/eiffel/test/apis/store_api_test.e
index e24849bf290..354da75803e 100644
--- a/samples/client/petstore/eiffel/test/apis/store_api_test.e
+++ b/samples/client/petstore/eiffel/test/apis/store_api_test.e
@@ -43,7 +43,7 @@ feature -- Test routines
test_order_by_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
local
l_response: ORDER
l_order_id: INTEGER_64
diff --git a/samples/client/petstore/elixir/lib/openapi_petstore/api/store.ex b/samples/client/petstore/elixir/lib/openapi_petstore/api/store.ex
index e8519031ef0..ae694541fba 100644
--- a/samples/client/petstore/elixir/lib/openapi_petstore/api/store.ex
+++ b/samples/client/petstore/elixir/lib/openapi_petstore/api/store.ex
@@ -71,7 +71,7 @@ defmodule OpenapiPetstore.Api.Store do
@doc """
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
### Parameters
diff --git a/samples/client/petstore/erlang-client/src/petstore_store_api.erl b/samples/client/petstore/erlang-client/src/petstore_store_api.erl
index 0d59557dc98..f95e36788d9 100644
--- a/samples/client/petstore/erlang-client/src/petstore_store_api.erl
+++ b/samples/client/petstore/erlang-client/src/petstore_store_api.erl
@@ -50,7 +50,7 @@ get_inventory(Ctx, Optional) ->
petstore_utils:request(Ctx, Method, [?BASE_URL, Path], QS, ContentTypeHeader++Headers, Body1, Opts, Cfg).
%% @doc 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
-spec get_order_by_id(ctx:ctx(), integer()) -> {ok, petstore_order:petstore_order(), petstore_utils:response_info()} | {ok, hackney:client_ref()} | {error, term(), petstore_utils:response_info()}.
get_order_by_id(Ctx, OrderId) ->
get_order_by_id(Ctx, OrderId, #{}).
diff --git a/samples/client/petstore/go/go-petstore/api/openapi.yaml b/samples/client/petstore/go/go-petstore/api/openapi.yaml
index 16c9dca0ae8..ee7adb4d6c6 100644
--- a/samples/client/petstore/go/go-petstore/api/openapi.yaml
+++ b/samples/client/petstore/go/go-petstore/api/openapi.yaml
@@ -354,7 +354,7 @@ paths:
- 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
@@ -641,7 +641,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/go/go-petstore/api_store.go b/samples/client/petstore/go/go-petstore/api_store.go
index 3ad1421086f..30e71c681f3 100644
--- a/samples/client/petstore/go/go-petstore/api_store.go
+++ b/samples/client/petstore/go/go-petstore/api_store.go
@@ -53,7 +53,7 @@ type StoreApi interface {
/*
GetOrderById 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 ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orderId ID of pet that needs to be fetched
@@ -299,7 +299,7 @@ func (r ApiGetOrderByIdRequest) Execute() (*Order, *http.Response, error) {
/*
GetOrderById 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 ctx context.Context - for authentication, logging, cancellation, deadlines, tracing, etc. Passed from http.Request or context.Background().
@param orderId ID of pet that needs to be fetched
diff --git a/samples/client/petstore/go/user_api_test.go b/samples/client/petstore/go/user_api_test.go
index 52195d6caac..6ae3fc25950 100644
--- a/samples/client/petstore/go/user_api_test.go
+++ b/samples/client/petstore/go/user_api_test.go
@@ -131,7 +131,7 @@ func TestUpdateUser(t *testing.T) {
t.Log(apiResponse)
}
- //verify changings are correct
+ //verify changes are correct
resp, apiResponse, err := client.UserApi.GetUserByName(context.Background(), "gopher").Execute()
if err != nil {
t.Fatalf("Error while getting user by id: %v", err)
diff --git a/samples/client/petstore/haskell-http-client/docs/OpenAPIPetstore-API-Store.html b/samples/client/petstore/haskell-http-client/docs/OpenAPIPetstore-API-Store.html
index 1aea9bc3756..c07d420ddd4 100644
--- a/samples/client/petstore/haskell-http-client/docs/OpenAPIPetstore-API-Store.html
+++ b/samples/client/petstore/haskell-http-client/docs/OpenAPIPetstore-API-Store.html
@@ -1 +1 @@
-OpenAPIPetstore.API.Store
\ No newline at end of file
+OpenAPIPetstore.API.Store
\ No newline at end of file
diff --git a/samples/client/petstore/haskell-http-client/docs/linuwial.css b/samples/client/petstore/haskell-http-client/docs/linuwial.css
index cbb58a0389d..0e64da3e389 100644
--- a/samples/client/petstore/haskell-http-client/docs/linuwial.css
+++ b/samples/client/petstore/haskell-http-client/docs/linuwial.css
@@ -755,7 +755,7 @@ table.info {
/* @end */
-/* @group Auxillary Pages */
+/* @group Auxiliary Pages */
.extension-list {
diff --git a/samples/client/petstore/haskell-http-client/docs/ocean.css b/samples/client/petstore/haskell-http-client/docs/ocean.css
index ba6af9ca2cf..d63c39a7598 100644
--- a/samples/client/petstore/haskell-http-client/docs/ocean.css
+++ b/samples/client/petstore/haskell-http-client/docs/ocean.css
@@ -546,7 +546,7 @@ div#style-menu-holder {
/* @end */
-/* @group Auxillary Pages */
+/* @group Auxiliary Pages */
.extension-list {
diff --git a/samples/client/petstore/haskell-http-client/docs/openapi-petstore.txt b/samples/client/petstore/haskell-http-client/docs/openapi-petstore.txt
index 5275a858476..58ca1598da5 100644
--- a/samples/client/petstore/haskell-http-client/docs/openapi-petstore.txt
+++ b/samples/client/petstore/haskell-http-client/docs/openapi-petstore.txt
@@ -2434,7 +2434,7 @@ data GetInventory
-- Find purchase order by ID
--
-- For valid response try integer IDs with value 5 or 10. Other
--- values will generated exceptions
+-- values will generate exceptions
getOrderById :: Accept accept -> OrderId -> OpenAPIPetstoreRequest GetOrderById MimeNoContent Order accept
data GetOrderById
diff --git a/samples/client/petstore/haskell-http-client/docs/src/OpenAPIPetstore.API.Store.html b/samples/client/petstore/haskell-http-client/docs/src/OpenAPIPetstore.API.Store.html
index 431b0d346d0..d93d118f802 100644
--- a/samples/client/petstore/haskell-http-client/docs/src/OpenAPIPetstore.API.Store.html
+++ b/samples/client/petstore/haskell-http-client/docs/src/OpenAPIPetstore.API.Store.html
@@ -143,7 +143,7 @@ forall {k} (t :: k). Proxy t
-
+
getOrderById
:: Accept accept
diff --git a/samples/client/petstore/haskell-http-client/example-app/Main.hs b/samples/client/petstore/haskell-http-client/example-app/Main.hs
index 9554b1a1a74..ba3fccd6d1c 100644
--- a/samples/client/petstore/haskell-http-client/example-app/Main.hs
+++ b/samples/client/petstore/haskell-http-client/example-app/Main.hs
@@ -70,7 +70,7 @@ runPet mgr config = do
-- -- No instance for (S.Produces S.AddPet S.MimePlainText)
-- addPetResponse <- S.dispatchLbs mgr config addPetRequest
- -- inspect the AddPet type to see typeclasses indicating wihch
+ -- inspect the AddPet type to see typeclasses indicating which
-- content-type and accept types (mimeTypes) are valid
-- :i S.AddPet
@@ -122,7 +122,7 @@ runPet mgr config = do
}
_ <- S.dispatchLbs mgr config updatePetRequest
- -- requred parameters are included as function arguments, optional parameters are included with applyOptionalParam
+ -- required parameters are included as function arguments, optional parameters are included with applyOptionalParam
-- inspect the UpdatePetWithForm type to see typeclasses indicating optional paramteters (:i S.UpdatePetWithForm)
-- instance S.HasOptionalParam S.UpdatePetWithForm S.Name
-- -- Defined in ‘OpenAPIPetstore.API’
diff --git a/samples/client/petstore/haskell-http-client/lib/OpenAPIPetstore/API/Store.hs b/samples/client/petstore/haskell-http-client/lib/OpenAPIPetstore/API/Store.hs
index 971d8d039b9..8036e7f02f1 100644
--- a/samples/client/petstore/haskell-http-client/lib/OpenAPIPetstore/API/Store.hs
+++ b/samples/client/petstore/haskell-http-client/lib/OpenAPIPetstore/API/Store.hs
@@ -102,7 +102,7 @@ instance Produces GetInventory MimeJSON
--
-- 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
--
getOrderById
:: Accept accept -- ^ request accept ('MimeType')
diff --git a/samples/client/petstore/haskell-http-client/openapi.yaml b/samples/client/petstore/haskell-http-client/openapi.yaml
index 16c9dca0ae8..ee7adb4d6c6 100644
--- a/samples/client/petstore/haskell-http-client/openapi.yaml
+++ b/samples/client/petstore/haskell-http-client/openapi.yaml
@@ -354,7 +354,7 @@ paths:
- 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
@@ -641,7 +641,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java-helidon-client/mp/docs/FakeApi.md b/samples/client/petstore/java-helidon-client/mp/docs/FakeApi.md
index 9dfe49d51cc..6ae181e21c6 100644
--- a/samples/client/petstore/java-helidon-client/mp/docs/FakeApi.md
+++ b/samples/client/petstore/java-helidon-client/mp/docs/FakeApi.md
@@ -533,7 +533,7 @@ Fake endpoint to test group parameters (optional)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java-helidon-client/mp/docs/StoreApi.md b/samples/client/petstore/java-helidon-client/mp/docs/StoreApi.md
index 299fb326568..f306d5948cc 100644
--- a/samples/client/petstore/java-helidon-client/mp/docs/StoreApi.md
+++ b/samples/client/petstore/java-helidon-client/mp/docs/StoreApi.md
@@ -85,7 +85,7 @@ This endpoint does not need any parameter.
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
### Parameters
diff --git a/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/api/StoreApi.java
index ff2dfbfbca6..b6f3f383a4d 100644
--- a/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java-helidon-client/mp/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -56,7 +56,7 @@ public interface StoreApi {
/**
* 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
*/
@GET
@Path("/order/{order_id}")
diff --git a/samples/client/petstore/java-helidon-client/mp/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java-helidon-client/mp/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 4331d26aa94..f9a8bd7ab11 100644
--- a/samples/client/petstore/java-helidon-client/mp/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java-helidon-client/mp/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -78,7 +78,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java-helidon-client/se/docs/FakeApi.md b/samples/client/petstore/java-helidon-client/se/docs/FakeApi.md
index 1b6b9507990..853a8de5377 100644
--- a/samples/client/petstore/java-helidon-client/se/docs/FakeApi.md
+++ b/samples/client/petstore/java-helidon-client/se/docs/FakeApi.md
@@ -1001,7 +1001,7 @@ null (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java-helidon-client/se/docs/StoreApi.md b/samples/client/petstore/java-helidon-client/se/docs/StoreApi.md
index e3b7d7b910c..ce91137cc6f 100644
--- a/samples/client/petstore/java-helidon-client/se/docs/StoreApi.md
+++ b/samples/client/petstore/java-helidon-client/se/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/api/StoreApi.java
index b7ad3ea6e83..a71be4f7616 100644
--- a/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java-helidon-client/se/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -41,7 +41,7 @@ public interface StoreApi {
/**
* 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 {@code ApiResponse}
*/
diff --git a/samples/client/petstore/java-helidon-client/se/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java-helidon-client/se/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 352767de98a..438c8b57b83 100644
--- a/samples/client/petstore/java-helidon-client/se/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java-helidon-client/se/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -89,7 +89,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
public void getOrderByIdTest() {
diff --git a/samples/client/petstore/java-micronaut-client/docs/apis/StoreApi.md b/samples/client/petstore/java-micronaut-client/docs/apis/StoreApi.md
index cad3ef78ef4..07337a34e41 100644
--- a/samples/client/petstore/java-micronaut-client/docs/apis/StoreApi.md
+++ b/samples/client/petstore/java-micronaut-client/docs/apis/StoreApi.md
@@ -92,7 +92,7 @@ Mono StoreApi.getOrderById(orderId)
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
### Parameters
| Name | Type | Description | Notes |
diff --git a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/api/StoreApi.java
index 6ee9bf5bf33..6f5b0014812 100644
--- a/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/java-micronaut-client/src/main/java/org/openapitools/api/StoreApi.java
@@ -53,7 +53,7 @@ public interface StoreApi {
/**
* 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 Order
diff --git a/samples/client/petstore/java-micronaut-client/src/test/groovy/org/openapitools/api/StoreApiSpec.groovy b/samples/client/petstore/java-micronaut-client/src/test/groovy/org/openapitools/api/StoreApiSpec.groovy
index 157f85ee7c7..cdeb7c14854 100644
--- a/samples/client/petstore/java-micronaut-client/src/test/groovy/org/openapitools/api/StoreApiSpec.groovy
+++ b/samples/client/petstore/java-micronaut-client/src/test/groovy/org/openapitools/api/StoreApiSpec.groovy
@@ -48,7 +48,7 @@ public class StoreApiSpec extends Specification {
/**
* 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
*/
void "getOrderById() test"() {
when:
diff --git a/samples/client/petstore/java/apache-httpclient/api/openapi.yaml b/samples/client/petstore/java/apache-httpclient/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/apache-httpclient/api/openapi.yaml
+++ b/samples/client/petstore/java/apache-httpclient/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/apache-httpclient/docs/FakeApi.md b/samples/client/petstore/java/apache-httpclient/docs/FakeApi.md
index 25301e7502c..627366e41db 100644
--- a/samples/client/petstore/java/apache-httpclient/docs/FakeApi.md
+++ b/samples/client/petstore/java/apache-httpclient/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/apache-httpclient/docs/StoreApi.md b/samples/client/petstore/java/apache-httpclient/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/apache-httpclient/docs/StoreApi.md
+++ b/samples/client/petstore/java/apache-httpclient/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/api/StoreApi.java
index 82a77bb2217..29b92b46e2b 100644
--- a/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/apache-httpclient/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -157,7 +157,7 @@ public class StoreApi {
}
/**
* 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 Order
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/apache-httpclient/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/apache-httpclient/src/test/java/org/openapitools/client/api/StoreApiTest.java
index fb91b870c59..c7df74110db 100644
--- a/samples/client/petstore/java/apache-httpclient/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/apache-httpclient/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -64,7 +64,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/feign-no-nullable/api/openapi.yaml b/samples/client/petstore/java/feign-no-nullable/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/feign-no-nullable/api/openapi.yaml
+++ b/samples/client/petstore/java/feign-no-nullable/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/api/StoreApi.java
index 9b821d4302d..e88030d0db4 100644
--- a/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/feign-no-nullable/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -68,7 +68,7 @@ public interface StoreApi extends ApiClient.Api {
/**
* 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 Order
*/
@@ -81,7 +81,7 @@ public interface StoreApi extends ApiClient.Api {
/**
* Find purchase order by ID
* Similar to getOrderById
but it also returns the http response headers .
- * 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 A ApiResponse that wraps the response boyd and the http headers.
*/
diff --git a/samples/client/petstore/java/feign-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/feign-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
index fbbea2cd5e8..8ceab0a3315 100644
--- a/samples/client/petstore/java/feign-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/feign-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -53,7 +53,7 @@ class StoreApiTest {
/**
* 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
*/
@Test
void getOrderByIdTest() {
diff --git a/samples/client/petstore/java/feign/api/openapi.yaml b/samples/client/petstore/java/feign/api/openapi.yaml
index f54c98c7f7b..f9cbedf1e42 100644
--- a/samples/client/petstore/java/feign/api/openapi.yaml
+++ b/samples/client/petstore/java/feign/api/openapi.yaml
@@ -412,7 +412,7 @@ paths:
x-accepts: application/json
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
@@ -712,7 +712,7 @@ paths:
style: form
responses:
"400":
- description: Someting wrong
+ description: Something wrong
security:
- bearer_test: []
summary: Fake endpoint to test group parameters (optional)
diff --git a/samples/client/petstore/java/feign/feign10x/api/openapi.yaml b/samples/client/petstore/java/feign/feign10x/api/openapi.yaml
index d9ad8bac2b6..36d0772340f 100644
--- a/samples/client/petstore/java/feign/feign10x/api/openapi.yaml
+++ b/samples/client/petstore/java/feign/feign10x/api/openapi.yaml
@@ -383,7 +383,7 @@ paths:
x-accepts: application/json
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
@@ -685,7 +685,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/feign/feign10x/git_push.sh b/samples/client/petstore/java/feign/feign10x/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/java/feign/feign10x/git_push.sh
+++ b/samples/client/petstore/java/feign/feign10x/git_push.sh
@@ -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
diff --git a/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ApiClient.java b/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ApiClient.java
index 4e256daf6b2..d66098cc7dd 100644
--- a/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ApiClient.java
+++ b/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ApiClient.java
@@ -332,7 +332,7 @@ public class ApiClient {
/**
* Gets request interceptor based on authentication name
- * @param authName Authentiation name
+ * @param authName Authentication name
* @return Request Interceptor
*/
public RequestInterceptor getAuthorization(String authName) {
diff --git a/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ServerConfiguration.java b/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ServerConfiguration.java
index a1107a8690e..e08da9aac7d 100644
--- a/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ServerConfiguration.java
+++ b/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/ServerConfiguration.java
@@ -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 variables) {
diff --git a/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/api/StoreApi.java
index 5ba8227e99b..3312ed1e15d 100644
--- a/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/feign/feign10x/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -39,7 +39,7 @@ public interface StoreApi extends ApiClient.Api {
/**
* 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 Order
*/
diff --git a/samples/client/petstore/java/feign/feign10x/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/feign/feign10x/src/test/java/org/openapitools/client/api/StoreApiTest.java
index bdb0b7a1e09..79f40ef39d8 100644
--- a/samples/client/petstore/java/feign/feign10x/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/feign/feign10x/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -53,7 +53,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
public void getOrderByIdTest() {
diff --git a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/api/StoreApi.java
index c5cefaa7a4b..7a4bfd120f1 100644
--- a/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/feign/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -68,7 +68,7 @@ public interface StoreApi extends ApiClient.Api {
/**
* 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 Order
*/
@@ -81,7 +81,7 @@ public interface StoreApi extends ApiClient.Api {
/**
* Find purchase order by ID
* Similar to getOrderById
but it also returns the http response headers .
- * 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 A ApiResponse that wraps the response boyd and the http headers.
*/
diff --git a/samples/client/petstore/java/feign/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/feign/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 68a9388a03a..c1c751847cc 100644
--- a/samples/client/petstore/java/feign/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/feign/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -91,7 +91,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
void getOrderByIdTest() {
diff --git a/samples/client/petstore/java/google-api-client/api/openapi.yaml b/samples/client/petstore/java/google-api-client/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/google-api-client/api/openapi.yaml
+++ b/samples/client/petstore/java/google-api-client/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/google-api-client/docs/FakeApi.md b/samples/client/petstore/java/google-api-client/docs/FakeApi.md
index 25301e7502c..627366e41db 100644
--- a/samples/client/petstore/java/google-api-client/docs/FakeApi.md
+++ b/samples/client/petstore/java/google-api-client/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/google-api-client/docs/StoreApi.md b/samples/client/petstore/java/google-api-client/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/google-api-client/docs/StoreApi.md
+++ b/samples/client/petstore/java/google-api-client/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/FakeApi.java
index daf6e2d718a..e80816d9678 100644
--- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -970,7 +970,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters
* @param requiredBooleanGroup Required Boolean in group parameters
* @param requiredInt64Group Required Integer in group parameters
@@ -986,7 +986,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters
* @param requiredBooleanGroup Required Boolean in group parameters
* @param requiredInt64Group Required Integer in group parameters
diff --git a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/StoreApi.java
index 2ba19aa3b65..c2c5c34d26d 100644
--- a/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/google-api-client/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -189,7 +189,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
@@ -205,7 +205,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
diff --git a/samples/client/petstore/java/google-api-client/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/google-api-client/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 54fb142817d..fd77cfec629 100644
--- a/samples/client/petstore/java/google-api-client/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/google-api-client/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -66,7 +66,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws IOException
* if the Api call fails
diff --git a/samples/client/petstore/java/jersey1/api/openapi.yaml b/samples/client/petstore/java/jersey1/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/jersey1/api/openapi.yaml
+++ b/samples/client/petstore/java/jersey1/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/jersey1/docs/FakeApi.md b/samples/client/petstore/java/jersey1/docs/FakeApi.md
index 25301e7502c..627366e41db 100644
--- a/samples/client/petstore/java/jersey1/docs/FakeApi.md
+++ b/samples/client/petstore/java/jersey1/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/jersey1/docs/StoreApi.md b/samples/client/petstore/java/jersey1/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/jersey1/docs/StoreApi.md
+++ b/samples/client/petstore/java/jersey1/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/jersey1/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/jersey1/src/main/java/org/openapitools/client/api/StoreApi.java
index bc68e36d8b4..db9decedc4b 100644
--- a/samples/client/petstore/java/jersey1/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/jersey1/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -132,7 +132,7 @@ public class StoreApi {
}
/**
* 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 Order
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/jersey1/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/jersey1/src/test/java/org/openapitools/client/api/StoreApiTest.java
index f83e6c38972..a43d64debf1 100644
--- a/samples/client/petstore/java/jersey1/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/jersey1/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -66,7 +66,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/api/openapi.yaml b/samples/client/petstore/java/jersey2-java8-localdatetime/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/jersey2-java8-localdatetime/api/openapi.yaml
+++ b/samples/client/petstore/java/jersey2-java8-localdatetime/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/docs/FakeApi.md b/samples/client/petstore/java/jersey2-java8-localdatetime/docs/FakeApi.md
index 438fa9fae14..d21432dbf3e 100644
--- a/samples/client/petstore/java/jersey2-java8-localdatetime/docs/FakeApi.md
+++ b/samples/client/petstore/java/jersey2-java8-localdatetime/docs/FakeApi.md
@@ -800,7 +800,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/docs/StoreApi.md b/samples/client/petstore/java/jersey2-java8-localdatetime/docs/StoreApi.md
index 7e88578e3c5..e0b1be10cdf 100644
--- a/samples/client/petstore/java/jersey2-java8-localdatetime/docs/StoreApi.md
+++ b/samples/client/petstore/java/jersey2-java8-localdatetime/docs/StoreApi.md
@@ -150,7 +150,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/FakeApi.java
index 6c1055a81fe..fc418490a4a 100644
--- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -925,7 +925,7 @@ if (booleanGroup != null)
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
@@ -941,7 +941,7 @@ if (booleanGroup != null)
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/StoreApi.java
index 9a85fb7c745..1f094916301 100644
--- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -174,7 +174,7 @@ public class StoreApi {
}
/**
* 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 Order
* @throws ApiException if fails to make API call
@@ -192,7 +192,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/jersey2-java8-localdatetime/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/jersey2-java8-localdatetime/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 97fed8776ae..49e5d0ddbb1 100644
--- a/samples/client/petstore/java/jersey2-java8-localdatetime/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/jersey2-java8-localdatetime/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -63,7 +63,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException if the Api call fails
*/
diff --git a/samples/client/petstore/java/jersey2-java8/api/openapi.yaml b/samples/client/petstore/java/jersey2-java8/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/jersey2-java8/api/openapi.yaml
+++ b/samples/client/petstore/java/jersey2-java8/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/jersey2-java8/docs/FakeApi.md b/samples/client/petstore/java/jersey2-java8/docs/FakeApi.md
index f0c93223e4a..84167f65462 100644
--- a/samples/client/petstore/java/jersey2-java8/docs/FakeApi.md
+++ b/samples/client/petstore/java/jersey2-java8/docs/FakeApi.md
@@ -800,7 +800,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/jersey2-java8/docs/StoreApi.md b/samples/client/petstore/java/jersey2-java8/docs/StoreApi.md
index 7e88578e3c5..e0b1be10cdf 100644
--- a/samples/client/petstore/java/jersey2-java8/docs/StoreApi.md
+++ b/samples/client/petstore/java/jersey2-java8/docs/StoreApi.md
@@ -150,7 +150,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/FakeApi.java
index a7709eb0284..0c31d3c2d14 100644
--- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -925,7 +925,7 @@ if (booleanGroup != null)
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
@@ -941,7 +941,7 @@ if (booleanGroup != null)
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
diff --git a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/StoreApi.java
index 9a85fb7c745..1f094916301 100644
--- a/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/jersey2-java8/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -174,7 +174,7 @@ public class StoreApi {
}
/**
* 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 Order
* @throws ApiException if fails to make API call
@@ -192,7 +192,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/jersey2-java8/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/jersey2-java8/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 768b5e53f3c..db5d1415a4e 100644
--- a/samples/client/petstore/java/jersey2-java8/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/jersey2-java8/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -64,7 +64,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/jersey3/api/openapi.yaml b/samples/client/petstore/java/jersey3/api/openapi.yaml
index bd4e3fa22b6..3e2a497d7a8 100644
--- a/samples/client/petstore/java/jersey3/api/openapi.yaml
+++ b/samples/client/petstore/java/jersey3/api/openapi.yaml
@@ -386,7 +386,7 @@ paths:
x-accepts: application/json
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
@@ -686,7 +686,7 @@ paths:
style: form
responses:
"400":
- description: Someting wrong
+ description: Something wrong
security:
- bearer_test: []
summary: Fake endpoint to test group parameters (optional)
diff --git a/samples/client/petstore/java/jersey3/docs/FakeApi.md b/samples/client/petstore/java/jersey3/docs/FakeApi.md
index 00365edeae9..0663bb791e4 100644
--- a/samples/client/petstore/java/jersey3/docs/FakeApi.md
+++ b/samples/client/petstore/java/jersey3/docs/FakeApi.md
@@ -861,7 +861,7 @@ null (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/jersey3/docs/StoreApi.md b/samples/client/petstore/java/jersey3/docs/StoreApi.md
index a3cbc7ec050..6eab555ee02 100644
--- a/samples/client/petstore/java/jersey3/docs/StoreApi.md
+++ b/samples/client/petstore/java/jersey3/docs/StoreApi.md
@@ -150,7 +150,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/FakeApi.java
index 9f2482642df..84549ce0609 100644
--- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -982,7 +982,7 @@ if (booleanGroup != null)
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
@@ -998,7 +998,7 @@ if (booleanGroup != null)
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
diff --git a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/StoreApi.java
index 0f4dd5cf858..bee4f7e72bf 100644
--- a/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/jersey3/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -174,7 +174,7 @@ public class StoreApi {
}
/**
* 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 Order
* @throws ApiException if fails to make API call
@@ -192,7 +192,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/JSONComposedSchemaTest.java b/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/JSONComposedSchemaTest.java
index 1834c34b068..7b580659538 100644
--- a/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/JSONComposedSchemaTest.java
+++ b/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/JSONComposedSchemaTest.java
@@ -90,7 +90,7 @@ public class JSONComposedSchemaTest {
assertTrue(o.getActualInstance() instanceof AppleReq);
BananaReq inst2 = o.getBananaReq(); // should throw ClassCastException
});
- // comment out below as the erorr message can be different due to JDK versions
+ // comment out below as the error message can be different due to JDK versions
// org.opentest4j.AssertionFailedError: expected: but was:
//Assertions.assertEquals("class org.openapitools.client.model.AppleReq cannot be cast to class org.openapitools.client.model.BananaReq (org.openapitools.client.model.AppleReq and org.openapitools.client.model.BananaReq are in unnamed module of loader 'app')", thrown.getMessage());
Assertions.assertNotNull(thrown);
@@ -141,7 +141,7 @@ public class JSONComposedSchemaTest {
});
assertTrue(exception.getMessage().contains("Failed deserialization for FruitReq: 2 classes match result"));
// TODO: add a similar unit test where the oneOf child schemas have required properties.
- // If the implementation is correct, the unmarshaling should take the "required" keyword
+ // If the implementation is correct, the unmarshalling should take the "required" keyword
// into consideration, which it is not doing currently.
}
{
@@ -232,7 +232,7 @@ public class JSONComposedSchemaTest {
@Test
public void testOneOfMultipleDiscriminators() throws Exception {
// 'shapeType' is a discriminator for the 'Shape' model and
- // 'triangleType' is a discriminator forr the 'Triangle' model.
+ // 'triangleType' is a discriminator for the 'Triangle' model.
String str = "{ \"shapeType\": \"Triangle\", \"triangleType\": \"EquilateralTriangle\" }";
// We should be able to deserialize a equilateral triangle into a EquilateralTriangle class.
diff --git a/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 38f008c16cd..f609a370164 100644
--- a/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/jersey3/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -63,7 +63,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException if the Api call fails
*/
diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/docs/StoreApi.md b/samples/client/petstore/java/microprofile-rest-client-3.0/docs/StoreApi.md
index 08e810fdab2..ae64b8574e2 100644
--- a/samples/client/petstore/java/microprofile-rest-client-3.0/docs/StoreApi.md
+++ b/samples/client/petstore/java/microprofile-rest-client-3.0/docs/StoreApi.md
@@ -153,7 +153,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/api/StoreApi.java
index ea8a22c7673..065c9dbfe46 100644
--- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -64,7 +64,7 @@ public interface StoreApi {
/**
* 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
*
*/
@GET
diff --git a/samples/client/petstore/java/microprofile-rest-client-3.0/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/microprofile-rest-client-3.0/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 4e7e884ae2a..712d7da2c16 100644
--- a/samples/client/petstore/java/microprofile-rest-client-3.0/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/microprofile-rest-client-3.0/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -84,7 +84,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/microprofile-rest-client/docs/StoreApi.md b/samples/client/petstore/java/microprofile-rest-client/docs/StoreApi.md
index 8f599b0364f..4d90de84607 100644
--- a/samples/client/petstore/java/microprofile-rest-client/docs/StoreApi.md
+++ b/samples/client/petstore/java/microprofile-rest-client/docs/StoreApi.md
@@ -153,7 +153,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/api/StoreApi.java
index 93b22832c68..7b4d9b5ee68 100644
--- a/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/microprofile-rest-client/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -64,7 +64,7 @@ public interface StoreApi {
/**
* 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
*
*/
@GET
diff --git a/samples/client/petstore/java/microprofile-rest-client/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/microprofile-rest-client/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 73d983d814a..ca77aa2845c 100644
--- a/samples/client/petstore/java/microprofile-rest-client/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/microprofile-rest-client/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -98,7 +98,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/native-async/api/openapi.yaml b/samples/client/petstore/java/native-async/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/native-async/api/openapi.yaml
+++ b/samples/client/petstore/java/native-async/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/native-async/docs/FakeApi.md b/samples/client/petstore/java/native-async/docs/FakeApi.md
index 3ecae4a48cc..a73552ed930 100644
--- a/samples/client/petstore/java/native-async/docs/FakeApi.md
+++ b/samples/client/petstore/java/native-async/docs/FakeApi.md
@@ -1627,7 +1627,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testGroupParametersWithHttpInfo
@@ -1715,7 +1715,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
diff --git a/samples/client/petstore/java/native-async/docs/StoreApi.md b/samples/client/petstore/java/native-async/docs/StoreApi.md
index 3042949fd60..13a27f70bdf 100644
--- a/samples/client/petstore/java/native-async/docs/StoreApi.md
+++ b/samples/client/petstore/java/native-async/docs/StoreApi.md
@@ -313,7 +313,7 @@ CompletableFuture>
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
### Example
@@ -381,7 +381,7 @@ No authorization required
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
### Example
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/api/StoreApi.java
index 74fa9c254e9..8a4ab19b207 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -239,7 +239,7 @@ public class StoreApi {
}
/**
* 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 CompletableFuture<Order>
* @throws ApiException if fails to make API call
@@ -269,7 +269,7 @@ public class StoreApi {
/**
* 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 CompletableFuture<ApiResponse<Order>>
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java
index ae24bce9104..698b5bb31e6 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesAnyType extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java
index 6e95eda0b13..5a3625f2506 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java
@@ -81,7 +81,7 @@ public class AdditionalPropertiesArray extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java
index 8361af60fe0..72638f3e483 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesBoolean extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java
index 5d02bc15ae3..42c9d36e742 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesInteger extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java
index 62762b53567..337f6634520 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java
@@ -81,7 +81,7 @@ public class AdditionalPropertiesNumber extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java
index f8bac3d1c2e..fece9479eaf 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesObject extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java
index 692d474c91f..5be6aabb7d2 100644
--- a/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java
+++ b/samples/client/petstore/java/native-async/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesString extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native-async/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/native-async/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 67bdd914ac3..a130cb587f8 100644
--- a/samples/client/petstore/java/native-async/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/native-async/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -70,7 +70,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/native/api/openapi.yaml b/samples/client/petstore/java/native/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/native/api/openapi.yaml
+++ b/samples/client/petstore/java/native/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/native/docs/FakeApi.md b/samples/client/petstore/java/native/docs/FakeApi.md
index 7a35dbf48d2..c6c947207f3 100644
--- a/samples/client/petstore/java/native/docs/FakeApi.md
+++ b/samples/client/petstore/java/native/docs/FakeApi.md
@@ -1536,7 +1536,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testGroupParametersWithHttpInfo
@@ -1616,7 +1616,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
diff --git a/samples/client/petstore/java/native/docs/StoreApi.md b/samples/client/petstore/java/native/docs/StoreApi.md
index 7f2744f1c1a..f45d5a4c765 100644
--- a/samples/client/petstore/java/native/docs/StoreApi.md
+++ b/samples/client/petstore/java/native/docs/StoreApi.md
@@ -295,7 +295,7 @@ ApiResponse<**Map<String, Integer>**>
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
### Example
@@ -362,7 +362,7 @@ No authorization required
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
### Example
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/api/StoreApi.java
index 682a815d041..75fca36444d 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -218,7 +218,7 @@ public class StoreApi {
}
/**
* 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 Order
* @throws ApiException if fails to make API call
@@ -230,7 +230,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java
index ae24bce9104..698b5bb31e6 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesAnyType.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesAnyType extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java
index 6e95eda0b13..5a3625f2506 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesArray.java
@@ -81,7 +81,7 @@ public class AdditionalPropertiesArray extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java
index 8361af60fe0..72638f3e483 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesBoolean.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesBoolean extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java
index 5d02bc15ae3..42c9d36e742 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesInteger.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesInteger extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java
index 62762b53567..337f6634520 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesNumber.java
@@ -81,7 +81,7 @@ public class AdditionalPropertiesNumber extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java
index f8bac3d1c2e..fece9479eaf 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesObject.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesObject extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java
index 692d474c91f..5be6aabb7d2 100644
--- a/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java
+++ b/samples/client/petstore/java/native/src/main/java/org/openapitools/client/model/AdditionalPropertiesString.java
@@ -80,7 +80,7 @@ public class AdditionalPropertiesString extends HashMap {
* Set the additional (undeclared) property with the specified name and value.
* If the property does not already exist, create it otherwise replace it.
* @param key the name of the property
- * @param value the value value of the property
+ * @param value the value of the property
* @return self reference
*/
@JsonAnySetter
diff --git a/samples/client/petstore/java/native/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/native/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 06b18c88b21..6ca7297142c 100644
--- a/samples/client/petstore/java/native/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/native/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -69,7 +69,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/FakeApi.md b/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/FakeApi.md
index f804c0e1940..49cd429ccb4 100644
--- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/FakeApi.md
+++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/FakeApi.md
@@ -756,7 +756,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
# **testInlineAdditionalProperties**
diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/StoreApi.md b/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/StoreApi.md
index 76bdde9e995..962c32a60d3 100644
--- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/StoreApi.md
+++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/docs/StoreApi.md
@@ -143,7 +143,7 @@ This endpoint does not need any parameter.
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
### Example
```java
diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/FakeApi.java
index 36dc208a26c..edea781fa98 100644
--- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -1671,7 +1671,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
@@ -1684,7 +1684,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public void execute() throws ApiException {
@@ -1698,7 +1698,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public ApiResponse executeWithHttpInfo() throws ApiException {
@@ -1713,7 +1713,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public okhttp3.Call executeAsync(final ApiCallback _callback) throws ApiException {
@@ -1731,7 +1731,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public APItestGroupParametersRequest testGroupParameters(Integer requiredStringGroup, Boolean requiredBooleanGroup, Long requiredInt64Group) {
diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/StoreApi.java
index e329b700806..1a173c40ca7 100644
--- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -408,7 +408,7 @@ public class StoreApi {
/**
* 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 Order
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -427,7 +427,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -447,7 +447,7 @@ public class StoreApi {
/**
* Find purchase order by ID (asynchronously)
- * 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)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/resources/openapi/openapi.yaml b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/resources/openapi/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/resources/openapi/openapi.yaml
+++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/main/resources/openapi/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/JSONTest.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/JSONTest.java
index 4fdb824f6b1..192c7e2b132 100644
--- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/JSONTest.java
+++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/JSONTest.java
@@ -94,7 +94,7 @@ public class JSONTest {
// OK
}
try {
- // unexpected miliseconds
+ // unexpected milliseconds
json.deserialize("\"2015-11-07T03:49:09.000Z\"", Date.class);
fail("json parsing should fail");
} catch (RuntimeException e) {
diff --git a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 786a51c7d14..b6d81a6c580 100644
--- a/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/okhttp-gson-dynamicOperations/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -61,7 +61,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException if the Api call fails
*/
diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java
index 8f02b16a9d0..74e474b0e27 100644
--- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java
+++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Category.java
@@ -236,7 +236,7 @@ public class Category {
public void write(JsonWriter out, Category value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java
index e1ac9379450..855c8732c42 100644
--- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java
+++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/ModelApiResponse.java
@@ -268,7 +268,7 @@ public class ModelApiResponse {
public void write(JsonWriter out, ModelApiResponse value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java
index cd1d2e950f2..b6069802987 100644
--- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java
+++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Order.java
@@ -402,7 +402,7 @@ public class Order {
public void write(JsonWriter out, Order value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java
index f7ee418ae9e..e82a8626bb0 100644
--- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java
+++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Pet.java
@@ -456,7 +456,7 @@ public class Pet {
public void write(JsonWriter out, Pet value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java
index b010e1ce9c6..312895d569f 100644
--- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java
+++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/Tag.java
@@ -236,7 +236,7 @@ public class Tag {
public void write(JsonWriter out, Tag value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java
index 267f33a3708..3078490c3af 100644
--- a/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java
+++ b/samples/client/petstore/java/okhttp-gson-group-parameter/src/main/java/org/openapitools/client/model/User.java
@@ -425,7 +425,7 @@ public class User {
public void write(JsonWriter out, User value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/api/openapi.yaml b/samples/client/petstore/java/okhttp-gson-parcelableModel/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/okhttp-gson-parcelableModel/api/openapi.yaml
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/FakeApi.md b/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/FakeApi.md
index f804c0e1940..49cd429ccb4 100644
--- a/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/FakeApi.md
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/FakeApi.md
@@ -756,7 +756,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
# **testInlineAdditionalProperties**
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/StoreApi.md b/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/StoreApi.md
index 76bdde9e995..962c32a60d3 100644
--- a/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/StoreApi.md
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/docs/StoreApi.md
@@ -143,7 +143,7 @@ This endpoint does not need any parameter.
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
### Example
```java
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/FakeApi.java
index 6dfe38809b7..8e914fae8b4 100644
--- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -1619,7 +1619,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
@@ -1632,7 +1632,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public void execute() throws ApiException {
@@ -1646,7 +1646,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public ApiResponse executeWithHttpInfo() throws ApiException {
@@ -1661,7 +1661,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public okhttp3.Call executeAsync(final ApiCallback _callback) throws ApiException {
@@ -1679,7 +1679,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public APItestGroupParametersRequest testGroupParameters(Integer requiredStringGroup, Boolean requiredBooleanGroup, Long requiredInt64Group) {
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/StoreApi.java
index ac429922b6d..064e82874b0 100644
--- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -381,7 +381,7 @@ public class StoreApi {
/**
* 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 Order
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -400,7 +400,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -420,7 +420,7 @@ public class StoreApi {
/**
* Find purchase order by ID (asynchronously)
- * 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)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
diff --git a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 4aa80d6f0a3..856dc21442c 100644
--- a/samples/client/petstore/java/okhttp-gson-parcelableModel/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/okhttp-gson-parcelableModel/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -66,7 +66,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/api/openapi.yaml b/samples/client/petstore/java/okhttp-gson-swagger1/api/openapi.yaml
index 2d7ea625b48..de4b48c1c43 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/api/openapi.yaml
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/api/openapi.yaml
@@ -364,7 +364,7 @@ paths:
x-accepts: application/json
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
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/docs/StoreApi.md b/samples/client/petstore/java/okhttp-gson-swagger1/docs/StoreApi.md
index 75649777141..2cd1833e6b9 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/docs/StoreApi.md
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/docs/StoreApi.md
@@ -143,7 +143,7 @@ This endpoint does not need any parameter.
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
### Example
```java
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java
index 703d4f926b5..324f35d5166 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -381,7 +381,7 @@ public class StoreApi {
/**
* 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 Order
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -400,7 +400,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -420,7 +420,7 @@ public class StoreApi {
/**
* Find purchase order by ID (asynchronously)
- * 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)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java
index f1c2ab03588..d404c0c07ca 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Category.java
@@ -241,7 +241,7 @@ public class Category {
public void write(JsonWriter out, Category value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java
index 1eddb844b19..db10be18296 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/ModelApiResponse.java
@@ -274,7 +274,7 @@ public class ModelApiResponse {
public void write(JsonWriter out, ModelApiResponse value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java
index a88514fafee..547ed754b82 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Order.java
@@ -411,7 +411,7 @@ public class Order {
public void write(JsonWriter out, Order value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java
index 13f03b976f5..7e20756fb07 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Pet.java
@@ -465,7 +465,7 @@ public class Pet {
public void write(JsonWriter out, Pet value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java
index 29cf8fe79a1..d6e095358fa 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/Tag.java
@@ -241,7 +241,7 @@ public class Tag {
public void write(JsonWriter out, Tag value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java
index 726c838cf32..3dc3fc06dfa 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/main/java/org/openapitools/client/model/User.java
@@ -436,7 +436,7 @@ public class User {
public void write(JsonWriter out, User value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/okhttp-gson-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java
index d8f7e07e96d..3ca20d0b210 100644
--- a/samples/client/petstore/java/okhttp-gson-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/okhttp-gson-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -61,7 +61,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException if the Api call fails
*/
diff --git a/samples/client/petstore/java/okhttp-gson/api/openapi.yaml b/samples/client/petstore/java/okhttp-gson/api/openapi.yaml
index 1ad553c3adc..c14ba32722f 100644
--- a/samples/client/petstore/java/okhttp-gson/api/openapi.yaml
+++ b/samples/client/petstore/java/okhttp-gson/api/openapi.yaml
@@ -386,7 +386,7 @@ paths:
x-accepts: application/json
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
@@ -686,7 +686,7 @@ paths:
style: form
responses:
"400":
- description: Someting wrong
+ description: Something wrong
security:
- bearer_test: []
summary: Fake endpoint to test group parameters (optional)
diff --git a/samples/client/petstore/java/okhttp-gson/docs/FakeApi.md b/samples/client/petstore/java/okhttp-gson/docs/FakeApi.md
index 2b7eebac956..e004c39d316 100644
--- a/samples/client/petstore/java/okhttp-gson/docs/FakeApi.md
+++ b/samples/client/petstore/java/okhttp-gson/docs/FakeApi.md
@@ -813,7 +813,7 @@ null (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
# **testInlineAdditionalProperties**
diff --git a/samples/client/petstore/java/okhttp-gson/docs/StoreApi.md b/samples/client/petstore/java/okhttp-gson/docs/StoreApi.md
index 26866a89c1a..59b4051d1a0 100644
--- a/samples/client/petstore/java/okhttp-gson/docs/StoreApi.md
+++ b/samples/client/petstore/java/okhttp-gson/docs/StoreApi.md
@@ -143,7 +143,7 @@ This endpoint does not need any parameter.
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
### Example
```java
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/FakeApi.java
index 99ad929095d..48c569065c5 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -1727,7 +1727,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public okhttp3.Call buildCall(final ApiCallback _callback) throws ApiException {
@@ -1740,7 +1740,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public void execute() throws ApiException {
@@ -1754,7 +1754,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public ApiResponse executeWithHttpInfo() throws ApiException {
@@ -1769,7 +1769,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public okhttp3.Call executeAsync(final ApiCallback _callback) throws ApiException {
@@ -1787,7 +1787,7 @@ public class FakeApi {
* @http.response.details
Status Code Description Response Headers
- 400 Someting wrong -
+ 400 Something wrong -
*/
public APItestGroupParametersRequest testGroupParameters(Integer requiredStringGroup, Boolean requiredBooleanGroup, Long requiredInt64Group) {
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/StoreApi.java
index 6069ecfb8c5..82f6c6b979a 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -381,7 +381,7 @@ public class StoreApi {
/**
* 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 Order
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -400,7 +400,7 @@ public class StoreApi {
/**
* 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 ApiResponse<Order>
* @throws ApiException If fail to call the API, e.g. server error or cannot deserialize the response body
@@ -420,7 +420,7 @@ public class StoreApi {
/**
* Find purchase order by ID (asynchronously)
- * 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)
* @param _callback The callback to be executed when the API call finishes
* @return The request call
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java
index 28bbb53b248..80b994c0a72 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/AdditionalPropertiesClass.java
@@ -453,7 +453,7 @@ public class AdditionalPropertiesClass {
public void write(JsonWriter out, AdditionalPropertiesClass value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java
index 8403f7bc786..86449232ba9 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Apple.java
@@ -239,7 +239,7 @@ public class Apple {
public void write(JsonWriter out, Apple value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java
index 328f87fed42..d8b8520638d 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfArrayOfNumberOnly.java
@@ -219,7 +219,7 @@ public class ArrayOfArrayOfNumberOnly {
public void write(JsonWriter out, ArrayOfArrayOfNumberOnly value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java
index d4a97afe357..8d4287ee23f 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOf.java
@@ -298,7 +298,7 @@ public class ArrayOfInlineAllOf {
public void write(JsonWriter out, ArrayOfInlineAllOf value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java
index fd3e8718370..1e067f7667c 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInner.java
@@ -239,7 +239,7 @@ public class ArrayOfInlineAllOfArrayAllofDogPropertyInner {
public void write(JsonWriter out, ArrayOfInlineAllOfArrayAllofDogPropertyInner value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf.java
index b8211744295..8b3de5de223 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf.java
@@ -207,7 +207,7 @@ public class ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf {
public void write(JsonWriter out, ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf1.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf1.java
index 77b48997325..8a96f016aad 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf1.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf1.java
@@ -207,7 +207,7 @@ public class ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf1 {
public void write(JsonWriter out, ArrayOfInlineAllOfArrayAllofDogPropertyInnerAllOf1 value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java
index 62f4627a3ab..8a2d5232478 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayOfNumberOnly.java
@@ -219,7 +219,7 @@ public class ArrayOfNumberOnly {
public void write(JsonWriter out, ArrayOfNumberOnly value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java
index 61a26ef0868..8bbfae30736 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ArrayTest.java
@@ -301,7 +301,7 @@ public class ArrayTest {
public void write(JsonWriter out, ArrayTest value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java
index eb218121428..20c20d58022 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Banana.java
@@ -205,7 +205,7 @@ public class Banana {
public void write(JsonWriter out, Banana value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java
index b27c3c4ad59..d0fb1e9d263 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/BasquePig.java
@@ -215,7 +215,7 @@ public class BasquePig {
public void write(JsonWriter out, BasquePig value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java
index e075e521347..4336894f317 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Capitalization.java
@@ -367,7 +367,7 @@ public class Capitalization {
public void write(JsonWriter out, Capitalization value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java
index 71f5f179e66..5d870dc417c 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Cat.java
@@ -218,7 +218,7 @@ public class Cat extends Animal {
public void write(JsonWriter out, Cat value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/CatAllOf.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/CatAllOf.java
index f85e8ee16fc..1d5e106c094 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/CatAllOf.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/CatAllOf.java
@@ -204,7 +204,7 @@ public class CatAllOf {
public void write(JsonWriter out, CatAllOf value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java
index 80930ee7ae0..c5808b89ae4 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Category.java
@@ -244,7 +244,7 @@ public class Category {
public void write(JsonWriter out, Category value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java
index 3389bd11807..6d367ffa429 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ClassModel.java
@@ -207,7 +207,7 @@ public class ClassModel {
public void write(JsonWriter out, ClassModel value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java
index 13228390a8f..321fd1df16d 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Client.java
@@ -207,7 +207,7 @@ public class Client {
public void write(JsonWriter out, Client value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java
index aef8ae5e7d6..e4c4c69e0b9 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ComplexQuadrilateral.java
@@ -248,7 +248,7 @@ public class ComplexQuadrilateral {
public void write(JsonWriter out, ComplexQuadrilateral value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java
index 4f41de3c694..8241d280a02 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DanishPig.java
@@ -215,7 +215,7 @@ public class DanishPig {
public void write(JsonWriter out, DanishPig value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java
index 89469f8273f..b0e05f5dded 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DeprecatedObject.java
@@ -209,7 +209,7 @@ public class DeprecatedObject {
public void write(JsonWriter out, DeprecatedObject value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java
index 88118b5b348..0531422dde6 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Dog.java
@@ -218,7 +218,7 @@ public class Dog extends Animal {
public void write(JsonWriter out, Dog value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DogAllOf.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DogAllOf.java
index 94fb4156761..57b6b6de82f 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DogAllOf.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/DogAllOf.java
@@ -207,7 +207,7 @@ public class DogAllOf {
public void write(JsonWriter out, DogAllOf value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java
index 1cf0b6fc4f9..8bf16a25a81 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumArrays.java
@@ -344,7 +344,7 @@ public class EnumArrays {
public void write(JsonWriter out, EnumArrays value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java
index a91ba499935..e321e66158b 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumStringDiscriminator.java
@@ -259,7 +259,7 @@ public class EnumStringDiscriminator {
public void write(JsonWriter out, EnumStringDiscriminator value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java
index c0f032081a7..df981cff1dd 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EnumTest.java
@@ -705,7 +705,7 @@ public class EnumTest {
public void write(JsonWriter out, EnumTest value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java
index 6df080b77c2..7d0557b6fbf 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/EquilateralTriangle.java
@@ -248,7 +248,7 @@ public class EquilateralTriangle {
public void write(JsonWriter out, EquilateralTriangle value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java
index 70afd7f228c..2f0f5831b71 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FileSchemaTestClass.java
@@ -262,7 +262,7 @@ public class FileSchemaTestClass {
public void write(JsonWriter out, FileSchemaTestClass value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java
index 18d24ce3523..6591e49b1d9 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Foo.java
@@ -207,7 +207,7 @@ public class Foo {
public void write(JsonWriter out, Foo value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java
index b6cf56d6bb5..3398f0f0588 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FooGetDefaultResponse.java
@@ -209,7 +209,7 @@ public class FooGetDefaultResponse {
public void write(JsonWriter out, FooGetDefaultResponse value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java
index bbf26ee29b0..2e1f63f769d 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/FormatTest.java
@@ -712,7 +712,7 @@ public class FormatTest {
public void write(JsonWriter out, FormatTest value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java
index d07eac97c67..30174cbd5ad 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HasOnlyReadOnly.java
@@ -231,7 +231,7 @@ public class HasOnlyReadOnly {
public void write(JsonWriter out, HasOnlyReadOnly value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java
index 9518b0b2a3c..910feb89c13 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/HealthCheckResult.java
@@ -219,7 +219,7 @@ public class HealthCheckResult {
public void write(JsonWriter out, HealthCheckResult value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java
index 3d7ef57a005..642cb06aab0 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MapTest.java
@@ -372,7 +372,7 @@ public class MapTest {
public void write(JsonWriter out, MapTest value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java
index c15891e298d..bbfdee31099 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/MixedPropertiesAndAdditionalPropertiesClass.java
@@ -278,7 +278,7 @@ public class MixedPropertiesAndAdditionalPropertiesClass {
public void write(JsonWriter out, MixedPropertiesAndAdditionalPropertiesClass value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java
index b737dd42665..eaab91cfe92 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Model200Response.java
@@ -236,7 +236,7 @@ public class Model200Response {
public void write(JsonWriter out, Model200Response value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java
index ce22205c284..2a9dbc746ff 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelApiResponse.java
@@ -268,7 +268,7 @@ public class ModelApiResponse {
public void write(JsonWriter out, ModelApiResponse value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java
index 6427d62625b..de3cdd9914b 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelFile.java
@@ -207,7 +207,7 @@ public class ModelFile {
public void write(JsonWriter out, ModelFile value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java
index 8cc4aabfcda..42ef11b0a32 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelList.java
@@ -207,7 +207,7 @@ public class ModelList {
public void write(JsonWriter out, ModelList value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java
index 71d191177f7..7a3c67d42fc 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ModelReturn.java
@@ -204,7 +204,7 @@ public class ModelReturn {
public void write(JsonWriter out, ModelReturn value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java
index 68fc6ab0681..24997479f9e 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Name.java
@@ -294,7 +294,7 @@ public class Name {
public void write(JsonWriter out, Name value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java
index f01af57e0c1..2ed94c6f0a5 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/NumberOnly.java
@@ -205,7 +205,7 @@ public class NumberOnly {
public void write(JsonWriter out, NumberOnly value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java
index e0f13eef128..1186d9bd915 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ObjectWithDeprecatedFields.java
@@ -320,7 +320,7 @@ public class ObjectWithDeprecatedFields {
public void write(JsonWriter out, ObjectWithDeprecatedFields value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java
index 01d74430dca..2000a36004e 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Order.java
@@ -402,7 +402,7 @@ public class Order {
public void write(JsonWriter out, Order value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java
index 05a163161da..400a51a5155 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/OuterComposite.java
@@ -266,7 +266,7 @@ public class OuterComposite {
public void write(JsonWriter out, OuterComposite value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java
index 51c3ae6fc2c..ffc645f582d 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ParentPet.java
@@ -186,7 +186,7 @@ public class ParentPet extends GrandparentAnimal {
public void write(JsonWriter out, ParentPet value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java
index bfba10cd0b3..a14813e2f38 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Pet.java
@@ -454,7 +454,7 @@ public class Pet {
public void write(JsonWriter out, Pet value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java
index fdf330c88ca..6fc90776b81 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/PetWithRequiredTags.java
@@ -448,7 +448,7 @@ public class PetWithRequiredTags {
public void write(JsonWriter out, PetWithRequiredTags value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java
index 98f88dea6db..6c817c77bf7 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/QuadrilateralInterface.java
@@ -215,7 +215,7 @@ public class QuadrilateralInterface {
public void write(JsonWriter out, QuadrilateralInterface value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java
index ffa344cd891..5dca09f9429 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ReadOnlyFirst.java
@@ -238,7 +238,7 @@ public class ReadOnlyFirst {
public void write(JsonWriter out, ReadOnlyFirst value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java
index 149f5f59be6..32cc45abe8a 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ScaleneTriangle.java
@@ -248,7 +248,7 @@ public class ScaleneTriangle {
public void write(JsonWriter out, ScaleneTriangle value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java
index 6584c3cd601..cd6bc7052c5 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/ShapeInterface.java
@@ -215,7 +215,7 @@ public class ShapeInterface {
public void write(JsonWriter out, ShapeInterface value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java
index 9a10cbaab24..918741f9ce6 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SimpleQuadrilateral.java
@@ -248,7 +248,7 @@ public class SimpleQuadrilateral {
public void write(JsonWriter out, SimpleQuadrilateral value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java
index 289e823eb91..af54ba6e24e 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/SpecialModelName.java
@@ -236,7 +236,7 @@ public class SpecialModelName {
public void write(JsonWriter out, SpecialModelName value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java
index 807a6426c4e..4ee8713b6f1 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Tag.java
@@ -236,7 +236,7 @@ public class Tag {
public void write(JsonWriter out, Tag value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java
index 20ba9fa3413..bc27096a108 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/TriangleInterface.java
@@ -215,7 +215,7 @@ public class TriangleInterface {
public void write(JsonWriter out, TriangleInterface value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java
index 38382f220e8..5a588fe40de 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/User.java
@@ -553,7 +553,7 @@ public class User {
public void write(JsonWriter out, User value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java
index 8eb26273138..07af8685223 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Whale.java
@@ -273,7 +273,7 @@ public class Whale {
public void write(JsonWriter out, Whale value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java
index 3acf608a6fc..12f27a952f6 100644
--- a/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java
+++ b/samples/client/petstore/java/okhttp-gson/src/main/java/org/openapitools/client/model/Zebra.java
@@ -296,7 +296,7 @@ public class Zebra {
public void write(JsonWriter out, Zebra value) throws IOException {
JsonObject obj = thisAdapter.toJsonTree(value).getAsJsonObject();
obj.remove("additionalProperties");
- // serialize additonal properties
+ // serialize additional properties
if (value.getAdditionalProperties() != null) {
for (Map.Entry entry : value.getAdditionalProperties().entrySet()) {
if (entry.getValue() instanceof String)
diff --git a/samples/client/petstore/java/okhttp-gson/src/test/java/org/openapitools/client/JSONTest.java b/samples/client/petstore/java/okhttp-gson/src/test/java/org/openapitools/client/JSONTest.java
index e90fe6a55fc..8e042e92344 100644
--- a/samples/client/petstore/java/okhttp-gson/src/test/java/org/openapitools/client/JSONTest.java
+++ b/samples/client/petstore/java/okhttp-gson/src/test/java/org/openapitools/client/JSONTest.java
@@ -113,7 +113,7 @@ public class JSONTest {
// OK
}
try {
- // unexpected miliseconds
+ // unexpected milliseconds
json.deserialize("\"2015-11-07T03:49:09.000Z\"", Date.class);
fail("json parsing should fail");
} catch (RuntimeException e) {
diff --git a/samples/client/petstore/java/rest-assured-jackson/api/openapi.yaml b/samples/client/petstore/java/rest-assured-jackson/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/rest-assured-jackson/api/openapi.yaml
+++ b/samples/client/petstore/java/rest-assured-jackson/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/rest-assured-jackson/docs/StoreApi.md b/samples/client/petstore/java/rest-assured-jackson/docs/StoreApi.md
index 5466205059c..4574efe73c0 100644
--- a/samples/client/petstore/java/rest-assured-jackson/docs/StoreApi.md
+++ b/samples/client/petstore/java/rest-assured-jackson/docs/StoreApi.md
@@ -96,7 +96,7 @@ This endpoint does not need any parameter.
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
### Example
```java
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/api/StoreApi.java
index 2cd3e0d21c5..730db2d87b7 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -214,7 +214,7 @@ public class StoreApi {
}
/**
* 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
*
* @see #orderIdPath ID of pet that needs to be fetched (required)
* return Order
diff --git a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java
index d014aee7cd5..183de79127e 100644
--- a/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/rest-assured-jackson/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -240,7 +240,7 @@ public class FakeApiTest {
/**
- * Someting wrong
+ * Something wrong
*/
@Test
public void shouldSee400AfterTestGroupParameters() {
diff --git a/samples/client/petstore/java/rest-assured/api/openapi.yaml b/samples/client/petstore/java/rest-assured/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/rest-assured/api/openapi.yaml
+++ b/samples/client/petstore/java/rest-assured/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/rest-assured/docs/StoreApi.md b/samples/client/petstore/java/rest-assured/docs/StoreApi.md
index 5466205059c..4574efe73c0 100644
--- a/samples/client/petstore/java/rest-assured/docs/StoreApi.md
+++ b/samples/client/petstore/java/rest-assured/docs/StoreApi.md
@@ -96,7 +96,7 @@ This endpoint does not need any parameter.
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
### Example
```java
diff --git a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/api/StoreApi.java
index 00080fed5a0..fd1abe4db3c 100644
--- a/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/rest-assured/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -215,7 +215,7 @@ public class StoreApi {
}
/**
* 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
*
* @see #orderIdPath ID of pet that needs to be fetched (required)
* return Order
diff --git a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java
index a6b1698aece..e248c2155a2 100644
--- a/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java
+++ b/samples/client/petstore/java/rest-assured/src/test/java/org/openapitools/client/api/FakeApiTest.java
@@ -240,7 +240,7 @@ public class FakeApiTest {
/**
- * Someting wrong
+ * Something wrong
*/
@Test
public void shouldSee400AfterTestGroupParameters() {
diff --git a/samples/client/petstore/java/resteasy/api/openapi.yaml b/samples/client/petstore/java/resteasy/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/resteasy/api/openapi.yaml
+++ b/samples/client/petstore/java/resteasy/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/resteasy/docs/FakeApi.md b/samples/client/petstore/java/resteasy/docs/FakeApi.md
index 25301e7502c..627366e41db 100644
--- a/samples/client/petstore/java/resteasy/docs/FakeApi.md
+++ b/samples/client/petstore/java/resteasy/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/resteasy/docs/StoreApi.md b/samples/client/petstore/java/resteasy/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/resteasy/docs/StoreApi.md
+++ b/samples/client/petstore/java/resteasy/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/api/StoreApi.java
index c5cd88a1871..d6e587d24b0 100644
--- a/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/resteasy/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -116,7 +116,7 @@ public class StoreApi {
}
/**
* 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 a {@code Order}
* @throws ApiException if fails to make API call
diff --git a/samples/client/petstore/java/resteasy/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/resteasy/src/test/java/org/openapitools/client/api/StoreApiTest.java
index f83e6c38972..a43d64debf1 100644
--- a/samples/client/petstore/java/resteasy/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/resteasy/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -66,7 +66,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/resttemplate-swagger1/api/openapi.yaml b/samples/client/petstore/java/resttemplate-swagger1/api/openapi.yaml
index 2d7ea625b48..de4b48c1c43 100644
--- a/samples/client/petstore/java/resttemplate-swagger1/api/openapi.yaml
+++ b/samples/client/petstore/java/resttemplate-swagger1/api/openapi.yaml
@@ -364,7 +364,7 @@ paths:
x-accepts: application/json
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
diff --git a/samples/client/petstore/java/resttemplate-swagger1/docs/StoreApi.md b/samples/client/petstore/java/resttemplate-swagger1/docs/StoreApi.md
index f401d417df2..bacbaeef140 100644
--- a/samples/client/petstore/java/resttemplate-swagger1/docs/StoreApi.md
+++ b/samples/client/petstore/java/resttemplate-swagger1/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java
index dcb96aad9f1..3172d5ab47e 100644
--- a/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/resttemplate-swagger1/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -136,7 +136,7 @@ public class StoreApi {
}
/**
* 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
* 200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
@@ -150,7 +150,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
diff --git a/samples/client/petstore/java/resttemplate-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/resttemplate-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java
index edef3c80ce2..06f67f67d66 100644
--- a/samples/client/petstore/java/resttemplate-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/resttemplate-swagger1/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -67,7 +67,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml b/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml
+++ b/samples/client/petstore/java/resttemplate-withXml/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/resttemplate-withXml/docs/FakeApi.md b/samples/client/petstore/java/resttemplate-withXml/docs/FakeApi.md
index 25301e7502c..627366e41db 100644
--- a/samples/client/petstore/java/resttemplate-withXml/docs/FakeApi.md
+++ b/samples/client/petstore/java/resttemplate-withXml/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/resttemplate-withXml/docs/StoreApi.md b/samples/client/petstore/java/resttemplate-withXml/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/resttemplate-withXml/docs/StoreApi.md
+++ b/samples/client/petstore/java/resttemplate-withXml/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/FakeApi.java
index 1fcb8328c73..3251aaa0e15 100644
--- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -602,7 +602,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters (required)
* @param requiredBooleanGroup Required Boolean in group parameters (required)
* @param requiredInt64Group Required Integer in group parameters (required)
@@ -618,7 +618,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters (required)
* @param requiredBooleanGroup Required Boolean in group parameters (required)
* @param requiredInt64Group Required Integer in group parameters (required)
diff --git a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/StoreApi.java
index 51afdd6c2d4..b45b41c32fd 100644
--- a/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/resttemplate-withXml/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -136,7 +136,7 @@ public class StoreApi {
}
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
@@ -150,7 +150,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
diff --git a/samples/client/petstore/java/resttemplate-withXml/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/resttemplate-withXml/src/test/java/org/openapitools/client/api/StoreApiTest.java
index b448f30ede3..0e7d086feab 100644
--- a/samples/client/petstore/java/resttemplate-withXml/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/resttemplate-withXml/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -65,7 +65,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/resttemplate/api/openapi.yaml b/samples/client/petstore/java/resttemplate/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/resttemplate/api/openapi.yaml
+++ b/samples/client/petstore/java/resttemplate/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/resttemplate/docs/FakeApi.md b/samples/client/petstore/java/resttemplate/docs/FakeApi.md
index 25301e7502c..627366e41db 100644
--- a/samples/client/petstore/java/resttemplate/docs/FakeApi.md
+++ b/samples/client/petstore/java/resttemplate/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/resttemplate/docs/StoreApi.md b/samples/client/petstore/java/resttemplate/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/resttemplate/docs/StoreApi.md
+++ b/samples/client/petstore/java/resttemplate/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/FakeApi.java
index 1fcb8328c73..3251aaa0e15 100644
--- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -602,7 +602,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters (required)
* @param requiredBooleanGroup Required Boolean in group parameters (required)
* @param requiredInt64Group Required Integer in group parameters (required)
@@ -618,7 +618,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters (required)
* @param requiredBooleanGroup Required Boolean in group parameters (required)
* @param requiredInt64Group Required Integer in group parameters (required)
diff --git a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/StoreApi.java
index 51afdd6c2d4..b45b41c32fd 100644
--- a/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/resttemplate/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -136,7 +136,7 @@ public class StoreApi {
}
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
@@ -150,7 +150,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
diff --git a/samples/client/petstore/java/resttemplate/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/resttemplate/src/test/java/org/openapitools/client/api/StoreApiTest.java
index b448f30ede3..0e7d086feab 100644
--- a/samples/client/petstore/java/resttemplate/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/resttemplate/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -65,7 +65,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/java/retrofit2-play26/api/openapi.yaml b/samples/client/petstore/java/retrofit2-play26/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/retrofit2-play26/api/openapi.yaml
+++ b/samples/client/petstore/java/retrofit2-play26/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/retrofit2-play26/docs/FakeApi.md b/samples/client/petstore/java/retrofit2-play26/docs/FakeApi.md
index 44193574acc..5722d2acb57 100644
--- a/samples/client/petstore/java/retrofit2-play26/docs/FakeApi.md
+++ b/samples/client/petstore/java/retrofit2-play26/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/retrofit2-play26/docs/StoreApi.md b/samples/client/petstore/java/retrofit2-play26/docs/StoreApi.md
index e6ae80525dd..d4c6d6d9871 100644
--- a/samples/client/petstore/java/retrofit2-play26/docs/StoreApi.md
+++ b/samples/client/petstore/java/retrofit2-play26/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/api/StoreApi.java
index b9ccc8cff46..361ae3560b5 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -42,7 +42,7 @@ public interface StoreApi {
/**
* 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 Call<Order>
*/
diff --git a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 90c204243b9..8cb33d8fd16 100644
--- a/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2-play26/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -43,7 +43,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
public void getOrderByIdTest() {
diff --git a/samples/client/petstore/java/retrofit2/api/openapi.yaml b/samples/client/petstore/java/retrofit2/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/retrofit2/api/openapi.yaml
+++ b/samples/client/petstore/java/retrofit2/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/retrofit2/docs/FakeApi.md b/samples/client/petstore/java/retrofit2/docs/FakeApi.md
index 44193574acc..5722d2acb57 100644
--- a/samples/client/petstore/java/retrofit2/docs/FakeApi.md
+++ b/samples/client/petstore/java/retrofit2/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/retrofit2/docs/StoreApi.md b/samples/client/petstore/java/retrofit2/docs/StoreApi.md
index e6ae80525dd..d4c6d6d9871 100644
--- a/samples/client/petstore/java/retrofit2/docs/StoreApi.md
+++ b/samples/client/petstore/java/retrofit2/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/api/StoreApi.java
index f4fd28bd1da..3a71697751c 100644
--- a/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/retrofit2/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -39,7 +39,7 @@ public interface StoreApi {
/**
* 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 Call<Order>
*/
diff --git a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 15455ccabb2..2f72f617c3a 100644
--- a/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -48,7 +48,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
public void getOrderByIdTest() {
diff --git a/samples/client/petstore/java/retrofit2rx2/api/openapi.yaml b/samples/client/petstore/java/retrofit2rx2/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/retrofit2rx2/api/openapi.yaml
+++ b/samples/client/petstore/java/retrofit2rx2/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/retrofit2rx2/docs/FakeApi.md b/samples/client/petstore/java/retrofit2rx2/docs/FakeApi.md
index 44193574acc..5722d2acb57 100644
--- a/samples/client/petstore/java/retrofit2rx2/docs/FakeApi.md
+++ b/samples/client/petstore/java/retrofit2rx2/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/retrofit2rx2/docs/StoreApi.md b/samples/client/petstore/java/retrofit2rx2/docs/StoreApi.md
index e6ae80525dd..d4c6d6d9871 100644
--- a/samples/client/petstore/java/retrofit2rx2/docs/StoreApi.md
+++ b/samples/client/petstore/java/retrofit2rx2/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/api/StoreApi.java
index d45f42a7150..c865bfbe53e 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -40,7 +40,7 @@ public interface StoreApi {
/**
* 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 Observable<Order>
*/
diff --git a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 15455ccabb2..2f72f617c3a 100644
--- a/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx2/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -48,7 +48,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
public void getOrderByIdTest() {
diff --git a/samples/client/petstore/java/retrofit2rx3/api/openapi.yaml b/samples/client/petstore/java/retrofit2rx3/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/retrofit2rx3/api/openapi.yaml
+++ b/samples/client/petstore/java/retrofit2rx3/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/retrofit2rx3/docs/FakeApi.md b/samples/client/petstore/java/retrofit2rx3/docs/FakeApi.md
index 44193574acc..5722d2acb57 100644
--- a/samples/client/petstore/java/retrofit2rx3/docs/FakeApi.md
+++ b/samples/client/petstore/java/retrofit2rx3/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/retrofit2rx3/docs/StoreApi.md b/samples/client/petstore/java/retrofit2rx3/docs/StoreApi.md
index e6ae80525dd..d4c6d6d9871 100644
--- a/samples/client/petstore/java/retrofit2rx3/docs/StoreApi.md
+++ b/samples/client/petstore/java/retrofit2rx3/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/api/StoreApi.java
index 99ada34679b..2002a8e3092 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -40,7 +40,7 @@ public interface StoreApi {
/**
* 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 Observable<Order>
*/
diff --git a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 00ebb3349f8..e02a6df7082 100644
--- a/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/retrofit2rx3/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -48,7 +48,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
public void getOrderByIdTest() {
diff --git a/samples/client/petstore/java/vertx-no-nullable/api/openapi.yaml b/samples/client/petstore/java/vertx-no-nullable/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/vertx-no-nullable/api/openapi.yaml
+++ b/samples/client/petstore/java/vertx-no-nullable/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/vertx-no-nullable/docs/FakeApi.md b/samples/client/petstore/java/vertx-no-nullable/docs/FakeApi.md
index f6ce519861c..efb255c14f2 100644
--- a/samples/client/petstore/java/vertx-no-nullable/docs/FakeApi.md
+++ b/samples/client/petstore/java/vertx-no-nullable/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/vertx-no-nullable/docs/StoreApi.md b/samples/client/petstore/java/vertx-no-nullable/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/vertx-no-nullable/docs/StoreApi.md
+++ b/samples/client/petstore/java/vertx-no-nullable/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/StoreApiImpl.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/StoreApiImpl.java
index bc264d4447e..762970b72d9 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/StoreApiImpl.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/StoreApiImpl.java
@@ -130,7 +130,7 @@ public class StoreApiImpl implements StoreApi {
}
/**
* 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)
* @param resultHandler Asynchronous result handler
*/
@@ -140,7 +140,7 @@ public class StoreApiImpl implements StoreApi {
/**
* 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)
* @param authInfo per call authentication override.
* @param resultHandler Asynchronous result handler
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java
index d8972b50a13..472da15fc3c 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java
@@ -110,7 +110,7 @@ public class StoreApi {
}
/**
* 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)
* @param resultHandler Asynchronous result handler
*/
@@ -120,7 +120,7 @@ public class StoreApi {
/**
* 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)
* @param authInfo call specific auth overrides
* @param resultHandler Asynchronous result handler
@@ -131,7 +131,7 @@ public class StoreApi {
/**
* 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 Asynchronous result handler (RxJava Single)
*/
@@ -143,7 +143,7 @@ public class StoreApi {
/**
* 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)
* @param authInfo call specific auth overrides
* @return Asynchronous result handler (RxJava Single)
diff --git a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 7c12d7f5662..5581be91dc8 100644
--- a/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/vertx-no-nullable/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -90,7 +90,7 @@ public class StoreApiTest {
/**
* 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 context Vertx test context for doing assertions
*/
diff --git a/samples/client/petstore/java/vertx/api/openapi.yaml b/samples/client/petstore/java/vertx/api/openapi.yaml
index 5f55e8c53f4..e7e17402f6f 100644
--- a/samples/client/petstore/java/vertx/api/openapi.yaml
+++ b/samples/client/petstore/java/vertx/api/openapi.yaml
@@ -370,7 +370,7 @@ paths:
x-accepts: application/json
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
@@ -672,7 +672,7 @@ paths:
responses:
"400":
content: {}
- description: Someting wrong
+ description: Something wrong
summary: Fake endpoint to test group parameters (optional)
tags:
- fake
diff --git a/samples/client/petstore/java/vertx/docs/FakeApi.md b/samples/client/petstore/java/vertx/docs/FakeApi.md
index f6ce519861c..efb255c14f2 100644
--- a/samples/client/petstore/java/vertx/docs/FakeApi.md
+++ b/samples/client/petstore/java/vertx/docs/FakeApi.md
@@ -796,7 +796,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/vertx/docs/StoreApi.md b/samples/client/petstore/java/vertx/docs/StoreApi.md
index 571e808abdf..b64e208a83a 100644
--- a/samples/client/petstore/java/vertx/docs/StoreApi.md
+++ b/samples/client/petstore/java/vertx/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/StoreApiImpl.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/StoreApiImpl.java
index bc264d4447e..762970b72d9 100644
--- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/StoreApiImpl.java
+++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/StoreApiImpl.java
@@ -130,7 +130,7 @@ public class StoreApiImpl implements StoreApi {
}
/**
* 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)
* @param resultHandler Asynchronous result handler
*/
@@ -140,7 +140,7 @@ public class StoreApiImpl implements StoreApi {
/**
* 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)
* @param authInfo per call authentication override.
* @param resultHandler Asynchronous result handler
diff --git a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java
index d8972b50a13..472da15fc3c 100644
--- a/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java
+++ b/samples/client/petstore/java/vertx/src/main/java/org/openapitools/client/api/rxjava/StoreApi.java
@@ -110,7 +110,7 @@ public class StoreApi {
}
/**
* 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)
* @param resultHandler Asynchronous result handler
*/
@@ -120,7 +120,7 @@ public class StoreApi {
/**
* 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)
* @param authInfo call specific auth overrides
* @param resultHandler Asynchronous result handler
@@ -131,7 +131,7 @@ public class StoreApi {
/**
* 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 Asynchronous result handler (RxJava Single)
*/
@@ -143,7 +143,7 @@ public class StoreApi {
/**
* 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)
* @param authInfo call specific auth overrides
* @return Asynchronous result handler (RxJava Single)
diff --git a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java
index 3b96f8699ff..6765ad932d0 100644
--- a/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/vertx/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -90,7 +90,7 @@ public class StoreApiTest {
/**
* 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 context Vertx test context for doing assertions
*/
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/.github/workflows/maven.yml b/samples/client/petstore/java/webclient-nullable-arrays/.github/workflows/maven.yml
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/.github/workflows/maven.yml
rename to samples/client/petstore/java/webclient-nullable-arrays/.github/workflows/maven.yml
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/.gitignore b/samples/client/petstore/java/webclient-nullable-arrays/.gitignore
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/.gitignore
rename to samples/client/petstore/java/webclient-nullable-arrays/.gitignore
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/.openapi-generator-ignore b/samples/client/petstore/java/webclient-nullable-arrays/.openapi-generator-ignore
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/.openapi-generator-ignore
rename to samples/client/petstore/java/webclient-nullable-arrays/.openapi-generator-ignore
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/.openapi-generator/FILES b/samples/client/petstore/java/webclient-nullable-arrays/.openapi-generator/FILES
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/.openapi-generator/FILES
rename to samples/client/petstore/java/webclient-nullable-arrays/.openapi-generator/FILES
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/.openapi-generator/VERSION b/samples/client/petstore/java/webclient-nullable-arrays/.openapi-generator/VERSION
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/.openapi-generator/VERSION
rename to samples/client/petstore/java/webclient-nullable-arrays/.openapi-generator/VERSION
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/.travis.yml b/samples/client/petstore/java/webclient-nullable-arrays/.travis.yml
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/.travis.yml
rename to samples/client/petstore/java/webclient-nullable-arrays/.travis.yml
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/README.md b/samples/client/petstore/java/webclient-nullable-arrays/README.md
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/README.md
rename to samples/client/petstore/java/webclient-nullable-arrays/README.md
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/api/openapi.yaml b/samples/client/petstore/java/webclient-nullable-arrays/api/openapi.yaml
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/api/openapi.yaml
rename to samples/client/petstore/java/webclient-nullable-arrays/api/openapi.yaml
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/build.gradle b/samples/client/petstore/java/webclient-nullable-arrays/build.gradle
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/build.gradle
rename to samples/client/petstore/java/webclient-nullable-arrays/build.gradle
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/build.sbt b/samples/client/petstore/java/webclient-nullable-arrays/build.sbt
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/build.sbt
rename to samples/client/petstore/java/webclient-nullable-arrays/build.sbt
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/docs/ByteArrayObject.md b/samples/client/petstore/java/webclient-nullable-arrays/docs/ByteArrayObject.md
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/docs/ByteArrayObject.md
rename to samples/client/petstore/java/webclient-nullable-arrays/docs/ByteArrayObject.md
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/docs/DefaultApi.md b/samples/client/petstore/java/webclient-nullable-arrays/docs/DefaultApi.md
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/docs/DefaultApi.md
rename to samples/client/petstore/java/webclient-nullable-arrays/docs/DefaultApi.md
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/git_push.sh b/samples/client/petstore/java/webclient-nullable-arrays/git_push.sh
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/git_push.sh
rename to samples/client/petstore/java/webclient-nullable-arrays/git_push.sh
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/gradle.properties b/samples/client/petstore/java/webclient-nullable-arrays/gradle.properties
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/gradle.properties
rename to samples/client/petstore/java/webclient-nullable-arrays/gradle.properties
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/gradle/wrapper/gradle-wrapper.jar b/samples/client/petstore/java/webclient-nullable-arrays/gradle/wrapper/gradle-wrapper.jar
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/gradle/wrapper/gradle-wrapper.jar
rename to samples/client/petstore/java/webclient-nullable-arrays/gradle/wrapper/gradle-wrapper.jar
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/gradle/wrapper/gradle-wrapper.properties b/samples/client/petstore/java/webclient-nullable-arrays/gradle/wrapper/gradle-wrapper.properties
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/gradle/wrapper/gradle-wrapper.properties
rename to samples/client/petstore/java/webclient-nullable-arrays/gradle/wrapper/gradle-wrapper.properties
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/gradlew b/samples/client/petstore/java/webclient-nullable-arrays/gradlew
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/gradlew
rename to samples/client/petstore/java/webclient-nullable-arrays/gradlew
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/gradlew.bat b/samples/client/petstore/java/webclient-nullable-arrays/gradlew.bat
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/gradlew.bat
rename to samples/client/petstore/java/webclient-nullable-arrays/gradlew.bat
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/pom.xml b/samples/client/petstore/java/webclient-nullable-arrays/pom.xml
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/pom.xml
rename to samples/client/petstore/java/webclient-nullable-arrays/pom.xml
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/settings.gradle b/samples/client/petstore/java/webclient-nullable-arrays/settings.gradle
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/settings.gradle
rename to samples/client/petstore/java/webclient-nullable-arrays/settings.gradle
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/AndroidManifest.xml b/samples/client/petstore/java/webclient-nullable-arrays/src/main/AndroidManifest.xml
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/AndroidManifest.xml
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/AndroidManifest.xml
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/ApiClient.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/ApiClient.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/ApiClient.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/ApiClient.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/JavaTimeFormatter.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/JavaTimeFormatter.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/JavaTimeFormatter.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/JavaTimeFormatter.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/RFC3339DateFormat.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/RFC3339DateFormat.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/RFC3339DateFormat.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/RFC3339DateFormat.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/ServerConfiguration.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/ServerConfiguration.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/ServerConfiguration.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/ServerConfiguration.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/ServerVariable.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/ServerVariable.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/ServerVariable.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/ServerVariable.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/StringUtil.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/StringUtil.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/StringUtil.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/StringUtil.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/api/DefaultApi.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/api/DefaultApi.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/api/DefaultApi.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/api/DefaultApi.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/ApiKeyAuth.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/ApiKeyAuth.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/ApiKeyAuth.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/ApiKeyAuth.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/Authentication.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/Authentication.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/Authentication.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/Authentication.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/HttpBasicAuth.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/HttpBasicAuth.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/HttpBasicAuth.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/HttpBasicAuth.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/HttpBearerAuth.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/HttpBearerAuth.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/auth/HttpBearerAuth.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/auth/HttpBearerAuth.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java b/samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/main/java/org/openapitools/client/model/ByteArrayObject.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/test/java/org/openapitools/client/api/DefaultApiTest.java b/samples/client/petstore/java/webclient-nullable-arrays/src/test/java/org/openapitools/client/api/DefaultApiTest.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/test/java/org/openapitools/client/api/DefaultApiTest.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/test/java/org/openapitools/client/api/DefaultApiTest.java
diff --git a/samples/client/petstore/java/webclient-nulable-arrays/src/test/java/org/openapitools/client/model/ByteArrayObjectTest.java b/samples/client/petstore/java/webclient-nullable-arrays/src/test/java/org/openapitools/client/model/ByteArrayObjectTest.java
similarity index 100%
rename from samples/client/petstore/java/webclient-nulable-arrays/src/test/java/org/openapitools/client/model/ByteArrayObjectTest.java
rename to samples/client/petstore/java/webclient-nullable-arrays/src/test/java/org/openapitools/client/model/ByteArrayObjectTest.java
diff --git a/samples/client/petstore/java/webclient/api/openapi.yaml b/samples/client/petstore/java/webclient/api/openapi.yaml
index f54c98c7f7b..f9cbedf1e42 100644
--- a/samples/client/petstore/java/webclient/api/openapi.yaml
+++ b/samples/client/petstore/java/webclient/api/openapi.yaml
@@ -412,7 +412,7 @@ paths:
x-accepts: application/json
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
@@ -712,7 +712,7 @@ paths:
style: form
responses:
"400":
- description: Someting wrong
+ description: Something wrong
security:
- bearer_test: []
summary: Fake endpoint to test group parameters (optional)
diff --git a/samples/client/petstore/java/webclient/docs/FakeApi.md b/samples/client/petstore/java/webclient/docs/FakeApi.md
index 1b6b9507990..853a8de5377 100644
--- a/samples/client/petstore/java/webclient/docs/FakeApi.md
+++ b/samples/client/petstore/java/webclient/docs/FakeApi.md
@@ -1001,7 +1001,7 @@ null (empty response body)
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-| **400** | Someting wrong | - |
+| **400** | Something wrong | - |
## testInlineAdditionalProperties
diff --git a/samples/client/petstore/java/webclient/docs/StoreApi.md b/samples/client/petstore/java/webclient/docs/StoreApi.md
index e3b7d7b910c..ce91137cc6f 100644
--- a/samples/client/petstore/java/webclient/docs/StoreApi.md
+++ b/samples/client/petstore/java/webclient/docs/StoreApi.md
@@ -152,7 +152,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/FakeApi.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/FakeApi.java
index 8287c063534..5c63a2ddbc1 100644
--- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/FakeApi.java
+++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/FakeApi.java
@@ -1132,7 +1132,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters
* @param requiredBooleanGroup Required Boolean in group parameters
* @param requiredInt64Group Required Integer in group parameters
@@ -1186,7 +1186,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters
* @param requiredBooleanGroup Required Boolean in group parameters
* @param requiredInt64Group Required Integer in group parameters
@@ -1203,7 +1203,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters
* @param requiredBooleanGroup Required Boolean in group parameters
* @param requiredInt64Group Required Integer in group parameters
@@ -1220,7 +1220,7 @@ public class FakeApi {
/**
* Fake endpoint to test group parameters (optional)
* Fake endpoint to test group parameters (optional)
- *
400 - Someting wrong
+ *
400 - Something wrong
* @param requiredStringGroup Required String in group parameters
* @param requiredBooleanGroup Required Boolean in group parameters
* @param requiredInt64Group Required Integer in group parameters
diff --git a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/StoreApi.java b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/StoreApi.java
index 27426959355..640efc67d3c 100644
--- a/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/StoreApi.java
+++ b/samples/client/petstore/java/webclient/src/main/java/org/openapitools/client/api/StoreApi.java
@@ -185,7 +185,7 @@ public class StoreApi {
}
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
@@ -224,7 +224,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
@@ -239,7 +239,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
@@ -254,7 +254,7 @@ public class StoreApi {
/**
* 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
*
200 - successful operation
*
400 - Invalid ID supplied
*
404 - Order not found
diff --git a/samples/client/petstore/java/webclient/src/test/java/org/openapitools/client/api/StoreApiTest.java b/samples/client/petstore/java/webclient/src/test/java/org/openapitools/client/api/StoreApiTest.java
index bb3455afaa5..4e4841aa45c 100644
--- a/samples/client/petstore/java/webclient/src/test/java/org/openapitools/client/api/StoreApiTest.java
+++ b/samples/client/petstore/java/webclient/src/test/java/org/openapitools/client/api/StoreApiTest.java
@@ -60,7 +60,7 @@ public class StoreApiTest {
/**
* 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
*/
@Test
public void getOrderByIdTest() {
diff --git a/samples/client/petstore/javascript-apollo/docs/StoreApi.md b/samples/client/petstore/javascript-apollo/docs/StoreApi.md
index b7abc576af4..6689c3da6f6 100644
--- a/samples/client/petstore/javascript-apollo/docs/StoreApi.md
+++ b/samples/client/petstore/javascript-apollo/docs/StoreApi.md
@@ -109,7 +109,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/javascript-apollo/src/api/StoreApi.js b/samples/client/petstore/javascript-apollo/src/api/StoreApi.js
index 96c269f27ae..f91d5f7893e 100644
--- a/samples/client/petstore/javascript-apollo/src/api/StoreApi.js
+++ b/samples/client/petstore/javascript-apollo/src/api/StoreApi.js
@@ -103,7 +103,7 @@ export default class StoreApi extends ApiClient {
/**
* 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 {Number} orderId ID of pet that needs to be fetched
* @param requestInit Dynamic configuration. @see {@link https://github.com/apollographql/apollo-server/pull/1277}
* @return {Promise}
diff --git a/samples/client/petstore/javascript-apollo/src/model/Color.js b/samples/client/petstore/javascript-apollo/src/model/Color.js
index b071fff068a..cdeb9bf6158 100644
--- a/samples/client/petstore/javascript-apollo/src/model/Color.js
+++ b/samples/client/petstore/javascript-apollo/src/model/Color.js
@@ -124,7 +124,7 @@ class Color {
}
/**
- * Gets the actaul instance, which can be String
, [Number]
.
+ * Gets the actual instance, which can be String
, [Number]
.
* @return {(module:model/String|module:model/[Number])} The actual instance.
*/
getActualInstance() {
@@ -132,7 +132,7 @@ class Color {
}
/**
- * Sets the actaul instance, which can be String
, [Number]
.
+ * Sets the actual instance, which can be String
, [Number]
.
* @param {(module:model/String|module:model/[Number])} obj The actual instance.
*/
setActualInstance(obj) {
@@ -140,7 +140,7 @@ class Color {
}
/**
- * Returns the JSON representation of the actual intance.
+ * Returns the JSON representation of the actual instance.
* @return {string}
*/
toJSON = function(){
diff --git a/samples/client/petstore/javascript-apollo/src/model/Pig.js b/samples/client/petstore/javascript-apollo/src/model/Pig.js
index da6cdc07656..222a3e27d41 100644
--- a/samples/client/petstore/javascript-apollo/src/model/Pig.js
+++ b/samples/client/petstore/javascript-apollo/src/model/Pig.js
@@ -88,7 +88,7 @@ class Pig {
}
/**
- * Gets the actaul instance, which can be BasquePig
, DanishPig
.
+ * Gets the actual instance, which can be BasquePig
, DanishPig
.
* @return {(module:model/BasquePig|module:model/DanishPig)} The actual instance.
*/
getActualInstance() {
@@ -96,7 +96,7 @@ class Pig {
}
/**
- * Sets the actaul instance, which can be BasquePig
, DanishPig
.
+ * Sets the actual instance, which can be BasquePig
, DanishPig
.
* @param {(module:model/BasquePig|module:model/DanishPig)} obj The actual instance.
*/
setActualInstance(obj) {
@@ -104,7 +104,7 @@ class Pig {
}
/**
- * Returns the JSON representation of the actual intance.
+ * Returns the JSON representation of the actual instance.
* @return {string}
*/
toJSON = function(){
diff --git a/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js b/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js
index 6df64168d26..05ac14953e9 100644
--- a/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js
+++ b/samples/client/petstore/javascript-closure-angular/API/Client/StoreApi.js
@@ -113,7 +113,7 @@ API.Client.StoreApi.prototype.getInventory = function(opt_extraHttpRequestParams
/**
* 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 {!number} orderId ID of pet that needs to be fetched
* @param {!angular.$http.Config=} opt_extraHttpRequestParams Extra HTTP parameters to send.
* @return {!angular.$q.Promise}
diff --git a/samples/client/petstore/javascript-closure-angular/lib/goog/base.js b/samples/client/petstore/javascript-closure-angular/lib/goog/base.js
index 5cd6e45ebd0..c462428f316 100644
--- a/samples/client/petstore/javascript-closure-angular/lib/goog/base.js
+++ b/samples/client/petstore/javascript-closure-angular/lib/goog/base.js
@@ -282,7 +282,7 @@ goog.addDependency = function(relPath, provides, requires) {
-// NOTE(nnaze): The debug DOM loader was included in base.js as an orignal
+// NOTE(nnaze): The debug DOM loader was included in base.js as an original
// way to do "debug-mode" development. The dependency system can sometimes
// be confusing, as can the debug DOM loader's asynchronous nature.
//
@@ -324,7 +324,7 @@ goog.ENABLE_DEBUG_LOADER = true;
*/
goog.require = function(name) {
- // if the object already exists we do not need do do anything
+ // if the object already exists we do not need do anything
// TODO(arv): If we start to support require based on file name this has
// to change
// TODO(arv): If we allow goog.foo.* this has to change
@@ -687,7 +687,7 @@ goog.typeOf = function(value) {
// Check these first, so we can avoid calling Object.prototype.toString if
// possible.
//
- // IE improperly marshals tyepof across execution contexts, but a
+ // IE improperly marshals typeof across execution contexts, but a
// cross-context object will still return false for "instanceof Object".
if (value instanceof Array) {
return 'array';
@@ -1378,7 +1378,7 @@ goog.getMsg = function(str, opt_values) {
* This is useful when introducing a new message that has not yet been
* translated into all languages.
*
- * This function is a compiler primtive. Must be used in the form:
+ * This function is a compiler primitive. Must be used in the form:
* var x = goog.getMsgWithFallback(MSG_A, MSG_B);
* where MSG_A and MSG_B were initialized with goog.getMsg.
*
@@ -1478,7 +1478,7 @@ goog.inherits = function(childCtor, parentCtor) {
* Call up to the superclass.
*
* If this is called from a constructor, then this calls the superclass
- * contructor with arguments 1-N.
+ * constructor with arguments 1-N.
*
* If this is called from a prototype method, then you must pass
* the name of the method as the second argument to this function. If
diff --git a/samples/client/petstore/javascript-es6/docs/StoreApi.md b/samples/client/petstore/javascript-es6/docs/StoreApi.md
index b7abc576af4..6689c3da6f6 100644
--- a/samples/client/petstore/javascript-es6/docs/StoreApi.md
+++ b/samples/client/petstore/javascript-es6/docs/StoreApi.md
@@ -109,7 +109,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/javascript-es6/src/api/StoreApi.js b/samples/client/petstore/javascript-es6/src/api/StoreApi.js
index ae1d1ea977d..21791c50e2f 100644
--- a/samples/client/petstore/javascript-es6/src/api/StoreApi.js
+++ b/samples/client/petstore/javascript-es6/src/api/StoreApi.js
@@ -123,7 +123,7 @@ export default class StoreApi {
/**
* 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 {Number} orderId ID of pet that needs to be fetched
* @param {module:api/StoreApi~getOrderByIdCallback} callback The callback function, accepting three arguments: error, data, response
* data is of type: {@link module:model/Order}
diff --git a/samples/client/petstore/javascript-es6/src/model/Color.js b/samples/client/petstore/javascript-es6/src/model/Color.js
index b071fff068a..cdeb9bf6158 100644
--- a/samples/client/petstore/javascript-es6/src/model/Color.js
+++ b/samples/client/petstore/javascript-es6/src/model/Color.js
@@ -124,7 +124,7 @@ class Color {
}
/**
- * Gets the actaul instance, which can be String
, [Number]
.
+ * Gets the actual instance, which can be String
, [Number]
.
* @return {(module:model/String|module:model/[Number])} The actual instance.
*/
getActualInstance() {
@@ -132,7 +132,7 @@ class Color {
}
/**
- * Sets the actaul instance, which can be String
, [Number]
.
+ * Sets the actual instance, which can be String
, [Number]
.
* @param {(module:model/String|module:model/[Number])} obj The actual instance.
*/
setActualInstance(obj) {
@@ -140,7 +140,7 @@ class Color {
}
/**
- * Returns the JSON representation of the actual intance.
+ * Returns the JSON representation of the actual instance.
* @return {string}
*/
toJSON = function(){
diff --git a/samples/client/petstore/javascript-es6/src/model/Pig.js b/samples/client/petstore/javascript-es6/src/model/Pig.js
index da6cdc07656..222a3e27d41 100644
--- a/samples/client/petstore/javascript-es6/src/model/Pig.js
+++ b/samples/client/petstore/javascript-es6/src/model/Pig.js
@@ -88,7 +88,7 @@ class Pig {
}
/**
- * Gets the actaul instance, which can be BasquePig
, DanishPig
.
+ * Gets the actual instance, which can be BasquePig
, DanishPig
.
* @return {(module:model/BasquePig|module:model/DanishPig)} The actual instance.
*/
getActualInstance() {
@@ -96,7 +96,7 @@ class Pig {
}
/**
- * Sets the actaul instance, which can be BasquePig
, DanishPig
.
+ * Sets the actual instance, which can be BasquePig
, DanishPig
.
* @param {(module:model/BasquePig|module:model/DanishPig)} obj The actual instance.
*/
setActualInstance(obj) {
@@ -104,7 +104,7 @@ class Pig {
}
/**
- * Returns the JSON representation of the actual intance.
+ * Returns the JSON representation of the actual instance.
* @return {string}
*/
toJSON = function(){
diff --git a/samples/client/petstore/javascript-flowtyped/README.md b/samples/client/petstore/javascript-flowtyped/README.md
index 9c2bec57335..be99fb0c807 100644
--- a/samples/client/petstore/javascript-flowtyped/README.md
+++ b/samples/client/petstore/javascript-flowtyped/README.md
@@ -15,7 +15,7 @@ Module system
### Building
-To build an compile the flow typed sources to javascript use:
+To build and compile the flow typed sources to javascript use:
```
npm install
# The dependency `babel-preset-react-app` requires that you specify `NODE_ENV` or `BABEL_ENV` environment variables
diff --git a/samples/client/petstore/javascript-flowtyped/lib/api.js b/samples/client/petstore/javascript-flowtyped/lib/api.js
index eca41f9154b..833e872bda6 100644
--- a/samples/client/petstore/javascript-flowtyped/lib/api.js
+++ b/samples/client/petstore/javascript-flowtyped/lib/api.js
@@ -599,7 +599,7 @@ const StoreApiFetchParamCreator = function (configuration) {
},
/**
- * 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
* @summary Find purchase order by ID
* @throws {RequiredError}
*/
@@ -702,7 +702,7 @@ const StoreApi = function (configuration, fetch = portableFetch) {
},
/**
- * 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
* @summary Find purchase order by ID
* @throws {RequiredError}
*/
diff --git a/samples/client/petstore/javascript-flowtyped/lib/api.js.flow b/samples/client/petstore/javascript-flowtyped/lib/api.js.flow
index d839e160bb3..7d7c0363fa6 100644
--- a/samples/client/petstore/javascript-flowtyped/lib/api.js.flow
+++ b/samples/client/petstore/javascript-flowtyped/lib/api.js.flow
@@ -823,7 +823,7 @@ export const StoreApiFetchParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @throws {RequiredError}
*/
@@ -930,7 +930,7 @@ export const StoreApi = function(configuration?: Configuration, fetch: FetchAPI
});
},
/**
- * 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
* @summary Find purchase order by ID
* @throws {RequiredError}
*/
diff --git a/samples/client/petstore/javascript-flowtyped/src/api.js b/samples/client/petstore/javascript-flowtyped/src/api.js
index d839e160bb3..7d7c0363fa6 100644
--- a/samples/client/petstore/javascript-flowtyped/src/api.js
+++ b/samples/client/petstore/javascript-flowtyped/src/api.js
@@ -823,7 +823,7 @@ export const StoreApiFetchParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @throws {RequiredError}
*/
@@ -930,7 +930,7 @@ export const StoreApi = function(configuration?: Configuration, fetch: FetchAPI
});
},
/**
- * 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
* @summary Find purchase order by ID
* @throws {RequiredError}
*/
diff --git a/samples/client/petstore/javascript-promise-es6/docs/StoreApi.md b/samples/client/petstore/javascript-promise-es6/docs/StoreApi.md
index 9ad6022bb96..541abf7e458 100644
--- a/samples/client/petstore/javascript-promise-es6/docs/StoreApi.md
+++ b/samples/client/petstore/javascript-promise-es6/docs/StoreApi.md
@@ -107,7 +107,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/javascript-promise-es6/src/api/StoreApi.js b/samples/client/petstore/javascript-promise-es6/src/api/StoreApi.js
index 00c7e3dca8a..4074bb07d27 100644
--- a/samples/client/petstore/javascript-promise-es6/src/api/StoreApi.js
+++ b/samples/client/petstore/javascript-promise-es6/src/api/StoreApi.js
@@ -126,7 +126,7 @@ export default class StoreApi {
/**
* 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 {Number} orderId ID of pet that needs to be fetched
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with an object containing data of type {@link module:model/Order} and HTTP response
*/
@@ -160,7 +160,7 @@ export default class StoreApi {
/**
* 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 {Number} orderId ID of pet that needs to be fetched
* @return {Promise} a {@link https://www.promisejs.org/|Promise}, with data of type {@link module:model/Order}
*/
diff --git a/samples/client/petstore/javascript-promise-es6/src/model/Color.js b/samples/client/petstore/javascript-promise-es6/src/model/Color.js
index b071fff068a..cdeb9bf6158 100644
--- a/samples/client/petstore/javascript-promise-es6/src/model/Color.js
+++ b/samples/client/petstore/javascript-promise-es6/src/model/Color.js
@@ -124,7 +124,7 @@ class Color {
}
/**
- * Gets the actaul instance, which can be String
, [Number]
.
+ * Gets the actual instance, which can be String
, [Number]
.
* @return {(module:model/String|module:model/[Number])} The actual instance.
*/
getActualInstance() {
@@ -132,7 +132,7 @@ class Color {
}
/**
- * Sets the actaul instance, which can be String
, [Number]
.
+ * Sets the actual instance, which can be String
, [Number]
.
* @param {(module:model/String|module:model/[Number])} obj The actual instance.
*/
setActualInstance(obj) {
@@ -140,7 +140,7 @@ class Color {
}
/**
- * Returns the JSON representation of the actual intance.
+ * Returns the JSON representation of the actual instance.
* @return {string}
*/
toJSON = function(){
diff --git a/samples/client/petstore/javascript-promise-es6/src/model/Pig.js b/samples/client/petstore/javascript-promise-es6/src/model/Pig.js
index da6cdc07656..222a3e27d41 100644
--- a/samples/client/petstore/javascript-promise-es6/src/model/Pig.js
+++ b/samples/client/petstore/javascript-promise-es6/src/model/Pig.js
@@ -88,7 +88,7 @@ class Pig {
}
/**
- * Gets the actaul instance, which can be BasquePig
, DanishPig
.
+ * Gets the actual instance, which can be BasquePig
, DanishPig
.
* @return {(module:model/BasquePig|module:model/DanishPig)} The actual instance.
*/
getActualInstance() {
@@ -96,7 +96,7 @@ class Pig {
}
/**
- * Sets the actaul instance, which can be BasquePig
, DanishPig
.
+ * Sets the actual instance, which can be BasquePig
, DanishPig
.
* @param {(module:model/BasquePig|module:model/DanishPig)} obj The actual instance.
*/
setActualInstance(obj) {
@@ -104,7 +104,7 @@ class Pig {
}
/**
- * Returns the JSON representation of the actual intance.
+ * Returns the JSON representation of the actual instance.
* @return {string}
*/
toJSON = function(){
diff --git a/samples/client/petstore/jaxrs-cxf-client-jackson/src/gen/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/jaxrs-cxf-client-jackson/src/gen/java/org/openapitools/api/StoreApi.java
index c1216ebe2cc..4d34cf13193 100644
--- a/samples/client/petstore/jaxrs-cxf-client-jackson/src/gen/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/jaxrs-cxf-client-jackson/src/gen/java/org/openapitools/api/StoreApi.java
@@ -58,7 +58,7 @@ public interface StoreApi {
/**
* 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
*
*/
@GET
diff --git a/samples/client/petstore/jaxrs-cxf-client-jackson/src/test/java/org/openapitools/api/StoreApiTest.java b/samples/client/petstore/jaxrs-cxf-client-jackson/src/test/java/org/openapitools/api/StoreApiTest.java
index 4e26ac030eb..b87dbe2c578 100644
--- a/samples/client/petstore/jaxrs-cxf-client-jackson/src/test/java/org/openapitools/api/StoreApiTest.java
+++ b/samples/client/petstore/jaxrs-cxf-client-jackson/src/test/java/org/openapitools/api/StoreApiTest.java
@@ -97,7 +97,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/jaxrs-cxf-client/src/gen/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/jaxrs-cxf-client/src/gen/java/org/openapitools/api/StoreApi.java
index c1216ebe2cc..4d34cf13193 100644
--- a/samples/client/petstore/jaxrs-cxf-client/src/gen/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/jaxrs-cxf-client/src/gen/java/org/openapitools/api/StoreApi.java
@@ -58,7 +58,7 @@ public interface StoreApi {
/**
* 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
*
*/
@GET
diff --git a/samples/client/petstore/jaxrs-cxf-client/src/test/java/org/openapitools/api/StoreApiTest.java b/samples/client/petstore/jaxrs-cxf-client/src/test/java/org/openapitools/api/StoreApiTest.java
index 8d411552a10..537e5da2200 100644
--- a/samples/client/petstore/jaxrs-cxf-client/src/test/java/org/openapitools/api/StoreApiTest.java
+++ b/samples/client/petstore/jaxrs-cxf-client/src/test/java/org/openapitools/api/StoreApiTest.java
@@ -109,7 +109,7 @@ public class StoreApiTest {
/**
* 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
*
* @throws ApiException
* if the Api call fails
diff --git a/samples/client/petstore/jmeter/.openapi-generator-ignore b/samples/client/petstore/jmeter/.openapi-generator-ignore
index c5fa491b4c5..deed424f8a1 100644
--- a/samples/client/petstore/jmeter/.openapi-generator-ignore
+++ b/samples/client/petstore/jmeter/.openapi-generator-ignore
@@ -5,7 +5,7 @@
# The patterns follow closely to .gitignore or .dockerignore.
# As an example, the C# client generator defines ApiClient.cs.
-# You can make changes and tell Swagger Codgen to ignore just this file by uncommenting the following line:
+# You can make changes and tell Swagger Codegen to ignore just this file by uncommenting the following line:
#ApiClient.cs
# You can match any string of characters against a directory, file or extension with a single asterisk (*):
diff --git a/samples/client/petstore/jmeter/PetApi.jmx b/samples/client/petstore/jmeter/PetApi.jmx
index fa9c1963bed..69c4866afab 100644
--- a/samples/client/petstore/jmeter/PetApi.jmx
+++ b/samples/client/petstore/jmeter/PetApi.jmx
@@ -171,7 +171,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -246,7 +246,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -328,7 +328,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -410,7 +410,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -485,7 +485,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -565,7 +565,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -640,7 +640,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -719,7 +719,7 @@
-
+
${httpStatusCode}
Assertion.response_code
diff --git a/samples/client/petstore/jmeter/StoreApi.jmx b/samples/client/petstore/jmeter/StoreApi.jmx
index 6c10ea74074..a30bca1219e 100644
--- a/samples/client/petstore/jmeter/StoreApi.jmx
+++ b/samples/client/petstore/jmeter/StoreApi.jmx
@@ -138,7 +138,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -213,7 +213,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -267,7 +267,7 @@
false
- Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions
+ Find purchase order by ID For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
@@ -284,7 +284,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -360,7 +360,7 @@
-
+
${httpStatusCode}
Assertion.response_code
diff --git a/samples/client/petstore/jmeter/UserApi.jmx b/samples/client/petstore/jmeter/UserApi.jmx
index fc1ff67ed39..0ab9b304880 100644
--- a/samples/client/petstore/jmeter/UserApi.jmx
+++ b/samples/client/petstore/jmeter/UserApi.jmx
@@ -163,7 +163,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -235,7 +235,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -307,7 +307,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -374,7 +374,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -445,7 +445,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -530,7 +530,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -597,7 +597,7 @@
-
+
${httpStatusCode}
Assertion.response_code
@@ -669,7 +669,7 @@
-
+
${httpStatusCode}
Assertion.response_code
diff --git a/samples/client/petstore/kotlin-array-simple-string-jvm-volley/README.md b/samples/client/petstore/kotlin-array-simple-string-jvm-volley/README.md
index 1180f9c7dff..ede0c53981f 100644
--- a/samples/client/petstore/kotlin-array-simple-string-jvm-volley/README.md
+++ b/samples/client/petstore/kotlin-array-simple-string-jvm-volley/README.md
@@ -70,8 +70,8 @@ val requestQueue: Lazy = lazy(initializer = {
The above constructor for each api allows the following to be customized
- A custom context, so either a singleton request queue or different scope can be created - see
https://developer.android.com/training/volley/requestqueue#singleton
-- An overrideable request queue - which in turn can have a custom http url stack passed to it
-- An overrideable request factory constructor call, or a request factory that can be overridden by a custom template, with
+- An overridable request queue - which in turn can have a custom http url stack passed to it
+- An overridable request factory constructor call, or a request factory that can be overridden by a custom template, with
custom header factory, request post processors and custom gson adapters injected.
#### Overriding request generation
diff --git a/samples/client/petstore/kotlin-array-simple-string-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt b/samples/client/petstore/kotlin-array-simple-string-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt
index b32f9ba2f15..02d5979e372 100644
--- a/samples/client/petstore/kotlin-array-simple-string-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt
+++ b/samples/client/petstore/kotlin-array-simple-string-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt
@@ -33,7 +33,7 @@ class RequestFactory(private val headerFactories : List<() -> Map (acc + factory.invoke()).toMutableMap() }
// If we decide to support auth parameters in the url, then you will reference them by supplying a url string
- // with known variable name refernces in the string. We will then apply
+ // with known variable name references in the string. We will then apply
val updatedUrl = if (!queryParams.isNullOrEmpty()) {
queryParams.asSequence().fold("$url?") {acc, param ->
"$acc${escapeString(param.key)}=${escapeString(param.value)}&"
diff --git a/samples/client/petstore/kotlin-default-values-jvm-volley/README.md b/samples/client/petstore/kotlin-default-values-jvm-volley/README.md
index 7f1cf7f1fa6..749aa7803d9 100644
--- a/samples/client/petstore/kotlin-default-values-jvm-volley/README.md
+++ b/samples/client/petstore/kotlin-default-values-jvm-volley/README.md
@@ -70,8 +70,8 @@ val requestQueue: Lazy = lazy(initializer = {
The above constructor for each api allows the following to be customized
- A custom context, so either a singleton request queue or different scope can be created - see
https://developer.android.com/training/volley/requestqueue#singleton
-- An overrideable request queue - which in turn can have a custom http url stack passed to it
-- An overrideable request factory constructor call, or a request factory that can be overridden by a custom template, with
+- An overridable request queue - which in turn can have a custom http url stack passed to it
+- An overridable request factory constructor call, or a request factory that can be overridden by a custom template, with
custom header factory, request post processors and custom gson adapters injected.
#### Overriding request generation
diff --git a/samples/client/petstore/kotlin-default-values-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt b/samples/client/petstore/kotlin-default-values-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt
index b32f9ba2f15..02d5979e372 100644
--- a/samples/client/petstore/kotlin-default-values-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt
+++ b/samples/client/petstore/kotlin-default-values-jvm-volley/src/main/kotlin/org/openapitools/client/request/RequestFactory.kt
@@ -33,7 +33,7 @@ class RequestFactory(private val headerFactories : List<() -> Map (acc + factory.invoke()).toMutableMap() }
// If we decide to support auth parameters in the url, then you will reference them by supplying a url string
- // with known variable name refernces in the string. We will then apply
+ // with known variable name references in the string. We will then apply
val updatedUrl = if (!queryParams.isNullOrEmpty()) {
queryParams.asSequence().fold("$url?") {acc, param ->
"$acc${escapeString(param.key)}=${escapeString(param.value)}&"
diff --git a/samples/client/petstore/kotlin-gson/docs/StoreApi.md b/samples/client/petstore/kotlin-gson/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-gson/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-gson/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index ab07574dd39..78a5eefbab4 100644
--- a/samples/client/petstore/kotlin-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-jackson/docs/StoreApi.md b/samples/client/petstore/kotlin-jackson/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-jackson/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jackson/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 2e214e45f3b..c76e8c708a5 100644
--- a/samples/client/petstore/kotlin-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-json-request-string/docs/StoreApi.md b/samples/client/petstore/kotlin-json-request-string/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-json-request-string/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-json-request-string/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-json-request-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-json-request-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 34e2b717f86..c6cfe5c1179 100644
--- a/samples/client/petstore/kotlin-json-request-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-json-request-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -182,7 +182,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -213,7 +213,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-jvm-ktor-gson/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-ktor-gson/docs/StoreApi.md
index f4986041af8..bec2f21a2ed 100644
--- a/samples/client/petstore/kotlin-jvm-ktor-gson/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-ktor-gson/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-ktor-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-ktor-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 8360878da17..f3f77745951 100644
--- a/samples/client/petstore/kotlin-jvm-ktor-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-ktor-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -97,7 +97,7 @@ import java.text.DateFormat
/**
* 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
* @return Order
*/
diff --git a/samples/client/petstore/kotlin-jvm-ktor-jackson/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-ktor-jackson/docs/StoreApi.md
index f4986041af8..bec2f21a2ed 100644
--- a/samples/client/petstore/kotlin-jvm-ktor-jackson/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-ktor-jackson/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-ktor-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-ktor-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index f6dd67c8b0b..517a743da14 100644
--- a/samples/client/petstore/kotlin-jvm-ktor-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-ktor-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -95,7 +95,7 @@ import com.fasterxml.jackson.databind.ObjectMapper
/**
* 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
* @return Order
*/
diff --git a/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 4bc01ba9274..d1f4b7975a3 100644
--- a/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-okhttp4-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -183,7 +183,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -214,7 +214,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-jvm-vertx-gson/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-vertx-gson/docs/StoreApi.md
index 68fbd1fecf9..e7398986d04 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-gson/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-vertx-gson/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-vertx-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-vertx-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 95c23914905..f0d6f11625e 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-vertx-gson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -162,7 +162,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -193,7 +193,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/docs/StoreApi.md
index 68fbd1fecf9..e7398986d04 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index ed807c37aae..e13a29f174d 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-vertx-jackson-coroutines/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -166,7 +166,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -197,7 +197,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-jvm-vertx-jackson/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-vertx-jackson/docs/StoreApi.md
index 68fbd1fecf9..e7398986d04 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-jackson/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-vertx-jackson/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-vertx-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-vertx-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 00640882ecd..6fed290a641 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-vertx-jackson/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -162,7 +162,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -193,7 +193,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-jvm-vertx-moshi/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-vertx-moshi/docs/StoreApi.md
index 68fbd1fecf9..e7398986d04 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-moshi/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-vertx-moshi/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-vertx-moshi/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-vertx-moshi/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 451a1adb48f..d45b6cde2f7 100644
--- a/samples/client/petstore/kotlin-jvm-vertx-moshi/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-vertx-moshi/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -161,7 +161,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -192,7 +192,7 @@ class StoreApi(basePath: kotlin.String = ApiClient.defaultBasePath, accessToken:
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-jvm-volley/README.md b/samples/client/petstore/kotlin-jvm-volley/README.md
index 9350405a0f5..1f4eeea12ff 100644
--- a/samples/client/petstore/kotlin-jvm-volley/README.md
+++ b/samples/client/petstore/kotlin-jvm-volley/README.md
@@ -70,8 +70,8 @@ val requestQueue: Lazy = lazy(initializer = {
The above constructor for each api allows the following to be customized
- A custom context, so either a singleton request queue or different scope can be created - see
https://developer.android.com/training/volley/requestqueue#singleton
-- An overrideable request queue - which in turn can have a custom http url stack passed to it
-- An overrideable request factory constructor call, or a request factory that can be overridden by a custom template, with
+- An overridable request queue - which in turn can have a custom http url stack passed to it
+- An overridable request factory constructor call, or a request factory that can be overridden by a custom template, with
custom header factory, request post processors and custom gson adapters injected.
#### Overriding request generation
diff --git a/samples/client/petstore/kotlin-jvm-volley/docs/StoreApi.md b/samples/client/petstore/kotlin-jvm-volley/docs/StoreApi.md
index 168afd9b9c0..63d7e597b3c 100644
--- a/samples/client/petstore/kotlin-jvm-volley/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-jvm-volley/docs/StoreApi.md
@@ -85,7 +85,7 @@ This endpoint does not need any parameter.
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/apis/StoreApi.kt
index 8c34cfdd291..104f58992d4 100644
--- a/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/apis/StoreApi.kt
@@ -156,7 +156,7 @@ class StoreApi (
}
/**
* 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
* @return Order
*/
diff --git a/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/request/RequestFactory.kt b/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/request/RequestFactory.kt
index 2bcf9d2d9c6..09276ebbe3e 100644
--- a/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/request/RequestFactory.kt
+++ b/samples/client/petstore/kotlin-jvm-volley/src/main/java/org/openapitools/client/request/RequestFactory.kt
@@ -58,7 +58,7 @@ class RequestFactory(private val headerFactories : List<() -> Map (acc + factory.invoke()).toMutableMap() }
// If we decide to support auth parameters in the url, then you will reference them by supplying a url string
- // with known variable name refernces in the string. We will then apply
+ // with known variable name references in the string. We will then apply
val updatedUrl = if (!queryParams.isNullOrEmpty()) {
queryParams.asSequence().fold("$url?") {acc, param ->
"$acc${escapeString(param.key)}=${escapeString(param.value)}&"
diff --git a/samples/client/petstore/kotlin-modelMutable/docs/StoreApi.md b/samples/client/petstore/kotlin-modelMutable/docs/StoreApi.md
index 0a3793c214b..7edeaf16398 100644
--- a/samples/client/petstore/kotlin-modelMutable/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-modelMutable/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-modelMutable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-modelMutable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 20bc7f914ce..49220c8b4dd 100644
--- a/samples/client/petstore/kotlin-modelMutable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-modelMutable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-moshi-codegen/docs/StoreApi.md b/samples/client/petstore/kotlin-moshi-codegen/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-moshi-codegen/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-moshi-codegen/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-moshi-codegen/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-moshi-codegen/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index ca473d06dff..2184157a2ed 100644
--- a/samples/client/petstore/kotlin-moshi-codegen/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-moshi-codegen/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-multiplatform/docs/StoreApi.md b/samples/client/petstore/kotlin-multiplatform/docs/StoreApi.md
index f4986041af8..bec2f21a2ed 100644
--- a/samples/client/petstore/kotlin-multiplatform/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-multiplatform/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-multiplatform/src/commonMain/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-multiplatform/src/commonMain/kotlin/org/openapitools/client/apis/StoreApi.kt
index c335f9512e0..58e6c87ca54 100644
--- a/samples/client/petstore/kotlin-multiplatform/src/commonMain/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-multiplatform/src/commonMain/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -108,7 +108,7 @@ open class StoreApi(
/**
* 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
* @return Order
*/
diff --git a/samples/client/petstore/kotlin-nonpublic/docs/StoreApi.md b/samples/client/petstore/kotlin-nonpublic/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-nonpublic/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-nonpublic/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-nonpublic/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-nonpublic/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index c99fd97c6ee..4efeb8f355c 100644
--- a/samples/client/petstore/kotlin-nonpublic/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-nonpublic/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ internal class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHtt
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ internal class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHtt
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-nullable/docs/StoreApi.md b/samples/client/petstore/kotlin-nullable/docs/StoreApi.md
index 30a28531120..f11c3b6ea16 100644
--- a/samples/client/petstore/kotlin-nullable/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-nullable/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-nullable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-nullable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 4ecada339c1..c25915eaa6f 100644
--- a/samples/client/petstore/kotlin-nullable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-nullable/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order or null
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-okhttp3/docs/StoreApi.md b/samples/client/petstore/kotlin-okhttp3/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-okhttp3/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-okhttp3/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-okhttp3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-okhttp3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index a99b9d3da25..8474d8e3459 100644
--- a/samples/client/petstore/kotlin-okhttp3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-okhttp3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/docs/StoreApi.md b/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/docs/StoreApi.md
index d3ca3e35896..78688cd5f19 100644
--- a/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/docs/StoreApi.md
@@ -85,7 +85,7 @@ This endpoint does not need any parameter.
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 393e0c10e36..2c1e446469c 100644
--- a/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-retrofit2-kotlinx_serialization/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -36,7 +36,7 @@ interface StoreApi {
/**
* 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
* Responses:
* - 200: successful operation
* - 400: Invalid ID supplied
diff --git a/samples/client/petstore/kotlin-retrofit2-rx3/docs/StoreApi.md b/samples/client/petstore/kotlin-retrofit2-rx3/docs/StoreApi.md
index d3ca3e35896..78688cd5f19 100644
--- a/samples/client/petstore/kotlin-retrofit2-rx3/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-retrofit2-rx3/docs/StoreApi.md
@@ -85,7 +85,7 @@ This endpoint does not need any parameter.
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-retrofit2-rx3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-retrofit2-rx3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index b24d72895e6..8b69aecb9c9 100644
--- a/samples/client/petstore/kotlin-retrofit2-rx3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-retrofit2-rx3/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -36,7 +36,7 @@ interface StoreApi {
/**
* 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
* Responses:
* - 200: successful operation
* - 400: Invalid ID supplied
diff --git a/samples/client/petstore/kotlin-retrofit2/docs/StoreApi.md b/samples/client/petstore/kotlin-retrofit2/docs/StoreApi.md
index d3ca3e35896..78688cd5f19 100644
--- a/samples/client/petstore/kotlin-retrofit2/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-retrofit2/docs/StoreApi.md
@@ -85,7 +85,7 @@ This endpoint does not need any parameter.
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-retrofit2/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-retrofit2/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index 5a3c2f7ccb8..e72a0903bea 100644
--- a/samples/client/petstore/kotlin-retrofit2/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-retrofit2/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -35,7 +35,7 @@ interface StoreApi {
/**
* 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
* Responses:
* - 200: successful operation
* - 400: Invalid ID supplied
diff --git a/samples/client/petstore/kotlin-string/docs/StoreApi.md b/samples/client/petstore/kotlin-string/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-string/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-string/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index ca473d06dff..2184157a2ed 100644
--- a/samples/client/petstore/kotlin-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-string/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin-threetenbp/docs/StoreApi.md b/samples/client/petstore/kotlin-threetenbp/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin-threetenbp/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin-threetenbp/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin-threetenbp/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin-threetenbp/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index ca473d06dff..2184157a2ed 100644
--- a/samples/client/petstore/kotlin-threetenbp/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin-threetenbp/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/kotlin/docs/StoreApi.md b/samples/client/petstore/kotlin/docs/StoreApi.md
index de2f4dbdcb1..c55032ffa26 100644
--- a/samples/client/petstore/kotlin/docs/StoreApi.md
+++ b/samples/client/petstore/kotlin/docs/StoreApi.md
@@ -108,7 +108,7 @@ Configure api_key:
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
### Example
```kotlin
diff --git a/samples/client/petstore/kotlin/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt b/samples/client/petstore/kotlin/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
index ca473d06dff..2184157a2ed 100644
--- a/samples/client/petstore/kotlin/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
+++ b/samples/client/petstore/kotlin/src/main/kotlin/org/openapitools/client/apis/StoreApi.kt
@@ -181,7 +181,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return Order
* @throws IllegalStateException If the request is not correctly configured
@@ -212,7 +212,7 @@ class StoreApi(basePath: kotlin.String = defaultBasePath, client: OkHttpClient =
/**
* 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
* @return ApiResponse
* @throws IllegalStateException If the request is not correctly configured
diff --git a/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.h b/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.h
index e67aa3c8357..935845f7215 100644
--- a/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.h
+++ b/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.h
@@ -48,7 +48,7 @@ extern NSInteger kSWGStoreApiMissingParamErrorCode;
/// 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
///
diff --git a/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.m b/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.m
index eaf254a6ab3..14a5c423921 100644
--- a/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.m
+++ b/samples/client/petstore/objc/core-data/SwaggerClient/Api/SWGStoreApi.m
@@ -171,7 +171,7 @@ NSInteger kSWGStoreApiMissingParamErrorCode = 234513;
///
/// 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
///
/// @returns SWGOrder*
diff --git a/samples/client/petstore/objc/core-data/docs/SWGStoreApi.md b/samples/client/petstore/objc/core-data/docs/SWGStoreApi.md
index 17a3c97e8f5..3c13b68eaff 100644
--- a/samples/client/petstore/objc/core-data/docs/SWGStoreApi.md
+++ b/samples/client/petstore/objc/core-data/docs/SWGStoreApi.md
@@ -118,7 +118,7 @@ This endpoint does not need any parameter.
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
### Example
```objc
diff --git a/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.h b/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.h
index e67aa3c8357..935845f7215 100644
--- a/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.h
+++ b/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.h
@@ -48,7 +48,7 @@ extern NSInteger kSWGStoreApiMissingParamErrorCode;
/// 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
///
diff --git a/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.m b/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.m
index eaf254a6ab3..14a5c423921 100644
--- a/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.m
+++ b/samples/client/petstore/objc/default/SwaggerClient/Api/SWGStoreApi.m
@@ -171,7 +171,7 @@ NSInteger kSWGStoreApiMissingParamErrorCode = 234513;
///
/// 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
///
/// @returns SWGOrder*
diff --git a/samples/client/petstore/objc/default/docs/SWGStoreApi.md b/samples/client/petstore/objc/default/docs/SWGStoreApi.md
index 17a3c97e8f5..3c13b68eaff 100644
--- a/samples/client/petstore/objc/default/docs/SWGStoreApi.md
+++ b/samples/client/petstore/objc/default/docs/SWGStoreApi.md
@@ -118,7 +118,7 @@ This endpoint does not need any parameter.
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
### Example
```objc
diff --git a/samples/client/petstore/perl/docs/StoreApi.md b/samples/client/petstore/perl/docs/StoreApi.md
index 594112b6390..f772b1020c0 100644
--- a/samples/client/petstore/perl/docs/StoreApi.md
+++ b/samples/client/petstore/perl/docs/StoreApi.md
@@ -112,7 +112,7 @@ This endpoint does not need any parameter.
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
### Example
```perl
diff --git a/samples/client/petstore/perl/tests/01_pet_api.t b/samples/client/petstore/perl/tests/01_pet_api.t
index e9647a96a39..efd67b08f34 100644
--- a/samples/client/petstore/perl/tests/01_pet_api.t
+++ b/samples/client/petstore/perl/tests/01_pet_api.t
@@ -66,7 +66,7 @@ is $get_pet_hash->{photoUrls}->[1], 'oop', 'get the proper photoUrl from get_pet
my $update_pet_with_form = $api->update_pet_with_form(pet_id => $pet_id, name => 'test_name', status => 'sold');
-is $update_pet_with_form, undef, 'get the null response from update_pet_wth_form';
+is $update_pet_with_form, undef, 'get the null response from update_pet_with_form';
my $get_pet_after_update = $api->get_pet_by_id(pet_id => $pet_id);
is $get_pet_after_update->{status}, 'sold', 'get the updated status after update_pet_with_form';
diff --git a/samples/client/petstore/perl/tests/04_role.t b/samples/client/petstore/perl/tests/04_role.t
index 6cd994dd5b3..b39d17779bc 100644
--- a/samples/client/petstore/perl/tests/04_role.t
+++ b/samples/client/petstore/perl/tests/04_role.t
@@ -135,7 +135,7 @@ my $cleared_tokens_cmp = {
};
cmp_deeply( $api->_cfg->clear_tokens, $cleared_tokens_cmp, 'clear_tokens() returns the correct data structure' );
-my $bad_token = { bad_token_name => 'bad token value' }; # value should should be hashref
+my $bad_token = { bad_token_name => 'bad token value' }; # value should be hashref
dies_ok { $api->_cfg->accept_tokens($bad_token) } "bad token causes exception";
diff --git a/samples/client/petstore/perl/tests/05_long_module_name.t b/samples/client/petstore/perl/tests/05_long_module_name.t
index 2be4ecbca0a..7c4cb5eea3e 100644
--- a/samples/client/petstore/perl/tests/05_long_module_name.t
+++ b/samples/client/petstore/perl/tests/05_long_module_name.t
@@ -77,7 +77,7 @@ is $get_pet_hash->{photoUrls}->[1], 'oop', 'get the proper photoUrl from get_pet
my $update_pet_with_form = $api->update_pet_with_form(pet_id => $pet_id, name => 'test_name', status => 'sold');
-is $update_pet_with_form, undef, 'get the null response from update_pet_wth_form';
+is $update_pet_with_form, undef, 'get the null response from update_pet_with_form';
my $get_pet_after_update = $api->get_pet_by_id(pet_id => $pet_id);
is $get_pet_after_update->{status}, 'sold', 'get the updated status after update_pet_with_form';
diff --git a/samples/client/petstore/perl/tests/06_inheritance.t b/samples/client/petstore/perl/tests/06_inheritance.t
index cdf089ea64e..5f9d5e76ae1 100644
--- a/samples/client/petstore/perl/tests/06_inheritance.t
+++ b/samples/client/petstore/perl/tests/06_inheritance.t
@@ -45,7 +45,7 @@ isa_ok($human, 'WWW::OpenAPIClient::Object::Human');
#
#
#my $update_pet_with_form = $api->update_pet_with_form(pet_id => $pet_id, name => 'test_name', status => 'sold');
-#is $update_pet_with_form, undef, 'get the null response from update_pet_wth_form';
+#is $update_pet_with_form, undef, 'get the null response from update_pet_with_form';
#
#my $get_pet_after_update = $api->get_pet_by_id(pet_id => $pet_id);
#is $get_pet_after_update->{status}, 'sold', 'get the updated status after update_pet_with_form';
diff --git a/samples/client/petstore/php/OpenAPIClient-php/docs/Api/StoreApi.md b/samples/client/petstore/php/OpenAPIClient-php/docs/Api/StoreApi.md
index 9e88ae63e31..f704ceffbdf 100644
--- a/samples/client/petstore/php/OpenAPIClient-php/docs/Api/StoreApi.md
+++ b/samples/client/petstore/php/OpenAPIClient-php/docs/Api/StoreApi.md
@@ -132,7 +132,7 @@ getOrderById($order_id): \OpenAPI\Client\Model\Order
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
### Example
diff --git a/samples/client/petstore/php/OpenAPIClient-php/lib/ObjectSerializer.php b/samples/client/petstore/php/OpenAPIClient-php/lib/ObjectSerializer.php
index 0dd7232b1b4..3a89b91a6df 100644
--- a/samples/client/petstore/php/OpenAPIClient-php/lib/ObjectSerializer.php
+++ b/samples/client/petstore/php/OpenAPIClient-php/lib/ObjectSerializer.php
@@ -445,7 +445,7 @@ class ObjectSerializer
}
if ($class === '\DateTime') {
- // Some API's return an invalid, empty string as a
+ // Some APIs return an invalid, empty string as a
// date-time property. DateTime::__construct() will return
// the current time for empty input which is probably not
// what is meant. The invalid empty string is probably to
@@ -455,7 +455,7 @@ class ObjectSerializer
try {
return new \DateTime($data);
} catch (\Exception $exception) {
- // Some API's return a date-time with too high nanosecond
+ // Some APIs return a date-time with too high nanosecond
// precision for php's DateTime to handle.
// With provided regexp 6 digits of microseconds saved
return new \DateTime(self::sanitizeTimestamp($data));
diff --git a/samples/client/petstore/php/OpenAPIClient-php/tests/DateTimeSerializerTest.php b/samples/client/petstore/php/OpenAPIClient-php/tests/DateTimeSerializerTest.php
index 8e40101c840..78547afd2f4 100644
--- a/samples/client/petstore/php/OpenAPIClient-php/tests/DateTimeSerializerTest.php
+++ b/samples/client/petstore/php/OpenAPIClient-php/tests/DateTimeSerializerTest.php
@@ -7,7 +7,7 @@ use PHPUnit\Framework\TestCase;
class DateTimeSerializerTest extends TestCase
{
- public function testDateTimeSanitazion()
+ public function testDateTimeSanitation()
{
$dateTime = new \DateTime('April 30, 1973 17:05 CEST');
@@ -25,7 +25,7 @@ class DateTimeSerializerTest extends TestCase
ObjectSerializer::setDateTimeFormat(\DateTime::ATOM);
}
- public function testDateSanitazion()
+ public function testDateSanitation()
{
$dateTime = new \DateTime('April 30, 1973 17:05 CEST');
diff --git a/samples/client/petstore/php/OpenAPIClient-php/tests/OrderApiTest.php b/samples/client/petstore/php/OpenAPIClient-php/tests/OrderApiTest.php
index 6769d913f22..78cc9d3edf7 100644
--- a/samples/client/petstore/php/OpenAPIClient-php/tests/OrderApiTest.php
+++ b/samples/client/petstore/php/OpenAPIClient-php/tests/OrderApiTest.php
@@ -40,7 +40,7 @@ class OrderApiTest extends TestCase
$order->setStatus("invalid_value");
}
- // test deseralization of order
+ // test deserialization of order
public function testDeserializationOfOrder()
{
$order_json = <<assertSame(false, $order->getComplete());
}
- // test deseralization of array of array of order
+ // test deserialization of array of array of order
public function testDeserializationOfArrayOfArrayOfOrder()
{
$order_json = <<assertSame(false, $_order->getComplete());
}
- // test deseralization of map of map of order
+ // test deserialization of map of map of order
public function testDeserializationOfMapOfMapOfOrder()
{
$order_json = << 10. Other values will generated exceptions
+For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions
### Example
```powershell
diff --git a/samples/client/petstore/powershell/src/PSPetstore/Private/PSHttpSignatureAuth.ps1 b/samples/client/petstore/powershell/src/PSPetstore/Private/PSHttpSignatureAuth.ps1
index 1b2b7717590..1fbc2468518 100644
--- a/samples/client/petstore/powershell/src/PSPetstore/Private/PSHttpSignatureAuth.ps1
+++ b/samples/client/petstore/powershell/src/PSPetstore/Private/PSHttpSignatureAuth.ps1
@@ -118,7 +118,7 @@ function Get-PSHttpSignedHeader {
-HashAlgorithmName $httpSigningConfiguration.HashAlgorithm `
-KeyPassPhrase $httpSigningConfiguration.KeyPassPhrase
}
- #Depricated
+ #Deprecated
<#$cryptographicScheme = Get-PSCryptographicScheme -SigningAlgorithm $httpSigningConfiguration.SigningAlgorithm `
-HashAlgorithm $httpSigningConfiguration.HashAlgorithm
#>
diff --git a/samples/client/petstore/powershell/tests/Petstore.Tests.ps1 b/samples/client/petstore/powershell/tests/Petstore.Tests.ps1
index b528ea675fc..6e64665dd65 100644
--- a/samples/client/petstore/powershell/tests/Petstore.Tests.ps1
+++ b/samples/client/petstore/powershell/tests/Petstore.Tests.ps1
@@ -60,7 +60,7 @@ Describe -tag 'PSOpenAPITools' -name 'Integration Tests' {
$Result = Update-PSPet -Pet $NewPet
$Result = Get-PSPetById -petId $Id -WithHttpInfo
$Result.GetType().fullname | Should -Be "System.Collections.Hashtable"
- #$Result["Response"].GetType().fullanme | Should -Be "System.Management.Automation.PSCustomObject"
+ #$Result["Response"].GetType().fullname | Should -Be "System.Management.Automation.PSCustomObject"
$Result["Response"]."id" | Should -Be 38369
$Result["Response"]."name" | Should -Be "PowerShell2"
$Result["Response"]."status" | Should -Be "Sold"
diff --git a/samples/client/petstore/python-asyncio/docs/FakeApi.md b/samples/client/petstore/python-asyncio/docs/FakeApi.md
index 34ffb41ad8d..93ddfecf969 100644
--- a/samples/client/petstore/python-asyncio/docs/FakeApi.md
+++ b/samples/client/petstore/python-asyncio/docs/FakeApi.md
@@ -749,7 +749,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-**400** | Someting wrong | - |
+**400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/python-asyncio/docs/StoreApi.md b/samples/client/petstore/python-asyncio/docs/StoreApi.md
index b9dc71c38f5..169d7074163 100644
--- a/samples/client/petstore/python-asyncio/docs/StoreApi.md
+++ b/samples/client/petstore/python-asyncio/docs/StoreApi.md
@@ -146,7 +146,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/python-asyncio/petstore_api/api/store_api.py b/samples/client/petstore/python-asyncio/petstore_api/api/store_api.py
index 4fa17d350eb..cbc91a0fc92 100644
--- a/samples/client/petstore/python-asyncio/petstore_api/api/store_api.py
+++ b/samples/client/petstore/python-asyncio/petstore_api/api/store_api.py
@@ -297,7 +297,7 @@ class StoreApi(object):
def get_order_by_id(self, order_id, **kwargs): # noqa: E501
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
@@ -327,7 +327,7 @@ class StoreApi(object):
def get_order_by_id_with_http_info(self, order_id, **kwargs): # noqa: E501
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
diff --git a/samples/client/petstore/python-legacy/docs/FakeApi.md b/samples/client/petstore/python-legacy/docs/FakeApi.md
index 34ffb41ad8d..93ddfecf969 100644
--- a/samples/client/petstore/python-legacy/docs/FakeApi.md
+++ b/samples/client/petstore/python-legacy/docs/FakeApi.md
@@ -749,7 +749,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-**400** | Someting wrong | - |
+**400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/python-legacy/docs/StoreApi.md b/samples/client/petstore/python-legacy/docs/StoreApi.md
index b9dc71c38f5..169d7074163 100644
--- a/samples/client/petstore/python-legacy/docs/StoreApi.md
+++ b/samples/client/petstore/python-legacy/docs/StoreApi.md
@@ -146,7 +146,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/python-legacy/petstore_api/api/store_api.py b/samples/client/petstore/python-legacy/petstore_api/api/store_api.py
index 4fa17d350eb..cbc91a0fc92 100644
--- a/samples/client/petstore/python-legacy/petstore_api/api/store_api.py
+++ b/samples/client/petstore/python-legacy/petstore_api/api/store_api.py
@@ -297,7 +297,7 @@ class StoreApi(object):
def get_order_by_id(self, order_id, **kwargs): # noqa: E501
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
@@ -327,7 +327,7 @@ class StoreApi(object):
def get_order_by_id_with_http_info(self, order_id, **kwargs): # noqa: E501
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
diff --git a/samples/client/petstore/python-prior/docs/FakeApi.md b/samples/client/petstore/python-prior/docs/FakeApi.md
index 7c12e3bd188..cef1d93c186 100644
--- a/samples/client/petstore/python-prior/docs/FakeApi.md
+++ b/samples/client/petstore/python-prior/docs/FakeApi.md
@@ -1103,7 +1103,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-**400** | Someting wrong | - |
+**400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/python-prior/docs/StoreApi.md b/samples/client/petstore/python-prior/docs/StoreApi.md
index d2e7f8a925b..95a40cf27ac 100644
--- a/samples/client/petstore/python-prior/docs/StoreApi.md
+++ b/samples/client/petstore/python-prior/docs/StoreApi.md
@@ -154,7 +154,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/python-prior/petstore_api/api/store_api.py b/samples/client/petstore/python-prior/petstore_api/api/store_api.py
index 98e47ccdf86..d171adfb3a0 100644
--- a/samples/client/petstore/python-prior/petstore_api/api/store_api.py
+++ b/samples/client/petstore/python-prior/petstore_api/api/store_api.py
@@ -400,7 +400,7 @@ class StoreApi(object):
):
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
diff --git a/samples/client/petstore/python-prior/petstore_api/models/__init__.py b/samples/client/petstore/python-prior/petstore_api/models/__init__.py
index 06a63ac193e..2fd471f464e 100644
--- a/samples/client/petstore/python-prior/petstore_api/models/__init__.py
+++ b/samples/client/petstore/python-prior/petstore_api/models/__init__.py
@@ -4,7 +4,7 @@
# if you have many models here with many references from one model to another this may
# raise a RecursionError
# to avoid this, import only the models that you directly need like:
-# from from petstore_api.model.pet import Pet
+# from petstore_api.model.pet import Pet
# or import this package, but before doing it, use:
# import sys
# sys.setrecursionlimit(n)
diff --git a/samples/client/petstore/python-prior/tests/test_api_client.py b/samples/client/petstore/python-prior/tests/test_api_client.py
index 5142a14e0db..5a4e36035bf 100644
--- a/samples/client/petstore/python-prior/tests/test_api_client.py
+++ b/samples/client/petstore/python-prior/tests/test_api_client.py
@@ -210,7 +210,7 @@ class ApiClientTests(unittest.TestCase):
result = self.api_client.sanitize_for_serialization(data)
self.assertEqual(result, list_of_pet_dict)
- # model with additional proerties
+ # model with additional properties
model_dict = {'some_key': True}
model = StringBooleanMap(**model_dict)
result = self.api_client.sanitize_for_serialization(model)
diff --git a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/FakeApi.md b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/FakeApi.md
index 7c12e3bd188..cef1d93c186 100644
--- a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/FakeApi.md
+++ b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/FakeApi.md
@@ -1103,7 +1103,7 @@ No authorization required
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-**400** | Someting wrong | - |
+**400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/StoreApi.md b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/StoreApi.md
index d2e7f8a925b..95a40cf27ac 100644
--- a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/StoreApi.md
+++ b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/docs/StoreApi.md
@@ -154,7 +154,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/api/store_api.py b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/api/store_api.py
index 98e47ccdf86..d171adfb3a0 100644
--- a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/api/store_api.py
+++ b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/api/store_api.py
@@ -400,7 +400,7 @@ class StoreApi(object):
):
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
diff --git a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/models/__init__.py b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/models/__init__.py
index 06a63ac193e..2fd471f464e 100644
--- a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/models/__init__.py
+++ b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/petstore_api/models/__init__.py
@@ -4,7 +4,7 @@
# if you have many models here with many references from one model to another this may
# raise a RecursionError
# to avoid this, import only the models that you directly need like:
-# from from petstore_api.model.pet import Pet
+# from petstore_api.model.pet import Pet
# or import this package, but before doing it, use:
# import sys
# sys.setrecursionlimit(n)
diff --git a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/tests/test_api_client.py b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/tests/test_api_client.py
index f808905993c..c2d8f20f2ad 100644
--- a/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/tests/test_api_client.py
+++ b/samples/client/petstore/python-prior_disallowAdditionalPropertiesIfNotPresent/tests/test_api_client.py
@@ -200,7 +200,7 @@ class ApiClientTests(unittest.TestCase):
result = self.api_client.sanitize_for_serialization(data)
self.assertEqual(result, list_of_pet_dict)
- # model with additional proerties
+ # model with additional properties
model_dict = {'some_key': True}
model = StringBooleanMap(**model_dict)
result = self.api_client.sanitize_for_serialization(model)
diff --git a/samples/client/petstore/python-tornado/docs/FakeApi.md b/samples/client/petstore/python-tornado/docs/FakeApi.md
index 34ffb41ad8d..93ddfecf969 100644
--- a/samples/client/petstore/python-tornado/docs/FakeApi.md
+++ b/samples/client/petstore/python-tornado/docs/FakeApi.md
@@ -749,7 +749,7 @@ No authorization required
### HTTP response details
| Status code | Description | Response headers |
|-------------|-------------|------------------|
-**400** | Someting wrong | - |
+**400** | Something wrong | - |
[[Back to top]](#) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to Model list]](../README.md#documentation-for-models) [[Back to README]](../README.md)
diff --git a/samples/client/petstore/python-tornado/docs/StoreApi.md b/samples/client/petstore/python-tornado/docs/StoreApi.md
index b9dc71c38f5..169d7074163 100644
--- a/samples/client/petstore/python-tornado/docs/StoreApi.md
+++ b/samples/client/petstore/python-tornado/docs/StoreApi.md
@@ -146,7 +146,7 @@ This endpoint does not need any parameter.
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
### Example
diff --git a/samples/client/petstore/python-tornado/petstore_api/api/store_api.py b/samples/client/petstore/python-tornado/petstore_api/api/store_api.py
index 4fa17d350eb..cbc91a0fc92 100644
--- a/samples/client/petstore/python-tornado/petstore_api/api/store_api.py
+++ b/samples/client/petstore/python-tornado/petstore_api/api/store_api.py
@@ -297,7 +297,7 @@ class StoreApi(object):
def get_order_by_id(self, order_id, **kwargs): # noqa: E501
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
@@ -327,7 +327,7 @@ class StoreApi(object):
def get_order_by_id_with_http_info(self, order_id, **kwargs): # noqa: E501
"""Find purchase order by ID # noqa: E501
- For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions # noqa: E501
+ For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions # noqa: E501
This method makes a synchronous HTTP request by default. To make an
asynchronous HTTP request, please pass async_req=True
diff --git a/samples/client/petstore/ruby-autoload/docs/StoreApi.md b/samples/client/petstore/ruby-autoload/docs/StoreApi.md
index 0bccca0bec7..52c551498cf 100644
--- a/samples/client/petstore/ruby-autoload/docs/StoreApi.md
+++ b/samples/client/petstore/ruby-autoload/docs/StoreApi.md
@@ -147,7 +147,7 @@ This endpoint does not need any parameter.
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
### Examples
diff --git a/samples/client/petstore/ruby-autoload/lib/petstore/api/store_api.rb b/samples/client/petstore/ruby-autoload/lib/petstore/api/store_api.rb
index 5b9bc0fea9e..8cd9e4bf4ef 100644
--- a/samples/client/petstore/ruby-autoload/lib/petstore/api/store_api.rb
+++ b/samples/client/petstore/ruby-autoload/lib/petstore/api/store_api.rb
@@ -138,7 +138,7 @@ module Petstore
end
# 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 order_id [Integer] ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Order]
@@ -148,7 +148,7 @@ module Petstore
end
# 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 order_id [Integer] ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Array<(Order, Integer, Hash)>] Order data, response status code and response headers
diff --git a/samples/client/petstore/ruby-autoload/spec/api/store_api_spec.rb b/samples/client/petstore/ruby-autoload/spec/api/store_api_spec.rb
index 165cc7a2b9f..bc9e4b294ce 100644
--- a/samples/client/petstore/ruby-autoload/spec/api/store_api_spec.rb
+++ b/samples/client/petstore/ruby-autoload/spec/api/store_api_spec.rb
@@ -57,7 +57,7 @@ describe 'StoreApi' do
# unit tests for get_order_by_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 order_id ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Order]
diff --git a/samples/client/petstore/ruby-faraday/docs/StoreApi.md b/samples/client/petstore/ruby-faraday/docs/StoreApi.md
index 0bccca0bec7..52c551498cf 100644
--- a/samples/client/petstore/ruby-faraday/docs/StoreApi.md
+++ b/samples/client/petstore/ruby-faraday/docs/StoreApi.md
@@ -147,7 +147,7 @@ This endpoint does not need any parameter.
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
### Examples
diff --git a/samples/client/petstore/ruby-faraday/lib/petstore/api/store_api.rb b/samples/client/petstore/ruby-faraday/lib/petstore/api/store_api.rb
index 9b1e5d8d933..4fc85638c81 100644
--- a/samples/client/petstore/ruby-faraday/lib/petstore/api/store_api.rb
+++ b/samples/client/petstore/ruby-faraday/lib/petstore/api/store_api.rb
@@ -138,7 +138,7 @@ module Petstore
end
# 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 order_id [Integer] ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Order]
@@ -148,7 +148,7 @@ module Petstore
end
# 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 order_id [Integer] ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Array<(Order, Integer, Hash)>] Order data, response status code and response headers
diff --git a/samples/client/petstore/ruby-faraday/spec/api/store_api_spec.rb b/samples/client/petstore/ruby-faraday/spec/api/store_api_spec.rb
index 1fd9faf40aa..97c3d704de0 100644
--- a/samples/client/petstore/ruby-faraday/spec/api/store_api_spec.rb
+++ b/samples/client/petstore/ruby-faraday/spec/api/store_api_spec.rb
@@ -57,7 +57,7 @@ describe 'StoreApi' do
# unit tests for get_order_by_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 order_id ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Order]
diff --git a/samples/client/petstore/ruby-faraday/spec/custom/pet_spec.rb b/samples/client/petstore/ruby-faraday/spec/custom/pet_spec.rb
index da8ab7aca57..8b2baf8ba5f 100644
--- a/samples/client/petstore/ruby-faraday/spec/custom/pet_spec.rb
+++ b/samples/client/petstore/ruby-faraday/spec/custom/pet_spec.rb
@@ -23,7 +23,7 @@ describe "Pet" do
tag1 = Petstore::Tag.new('id' => 1, 'name' => 'tag1')
tag2 = Petstore::Tag.new('id' => 2, 'name' => 'tag2')
category1 = Petstore::Category.new(:id => 1, :name => 'category unknown')
- # initalize using both string and symbol key
+ # initialize using both string and symbol key
pet_hash = {
:id => @pet_id,
:name => "RUBY UNIT TESTING",
@@ -78,7 +78,7 @@ describe "Pet" do
fail 'it should raise error'
rescue Petstore::ApiError => e
expect(e.code).to eq(404)
- # skip the check as the response contains a timestamp that changes on every reponse
+ # skip the check as the response contains a timestamp that changes on every response
# expect(e.message).to eq("Error message: the server returns an error\nHTTP status code: 404\nResponse headers: {\"Date\"=>\"Tue, 26 Feb 2019 04:35:40 GMT\", \"Access-Control-Allow-Origin\"=>\"*\", \"Access-Control-Allow-Methods\"=>\"GET, POST, DELETE, PUT\", \"Access-Control-Allow-Headers\"=>\"Content-Type, api_key, Authorization\", \"Content-Type\"=>\"application/json\", \"Connection\"=>\"close\", \"Server\"=>\"Jetty(9.2.9.v20150224)\"}\nResponse body: {\"code\":1,\"type\":\"error\",\"message\":\"Pet not found\"}")
expect(e.response_body).to eq('{"code":1,"type":"error","message":"Pet not found"}')
expect(e.response_headers).to include('Content-Type')
diff --git a/samples/client/petstore/ruby/docs/StoreApi.md b/samples/client/petstore/ruby/docs/StoreApi.md
index 0bccca0bec7..52c551498cf 100644
--- a/samples/client/petstore/ruby/docs/StoreApi.md
+++ b/samples/client/petstore/ruby/docs/StoreApi.md
@@ -147,7 +147,7 @@ This endpoint does not need any parameter.
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
### Examples
diff --git a/samples/client/petstore/ruby/lib/petstore/api/store_api.rb b/samples/client/petstore/ruby/lib/petstore/api/store_api.rb
index 5b9bc0fea9e..8cd9e4bf4ef 100644
--- a/samples/client/petstore/ruby/lib/petstore/api/store_api.rb
+++ b/samples/client/petstore/ruby/lib/petstore/api/store_api.rb
@@ -138,7 +138,7 @@ module Petstore
end
# 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 order_id [Integer] ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Order]
@@ -148,7 +148,7 @@ module Petstore
end
# 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 order_id [Integer] ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Array<(Order, Integer, Hash)>] Order data, response status code and response headers
diff --git a/samples/client/petstore/ruby/spec/api/store_api_spec.rb b/samples/client/petstore/ruby/spec/api/store_api_spec.rb
index 1fd9faf40aa..97c3d704de0 100644
--- a/samples/client/petstore/ruby/spec/api/store_api_spec.rb
+++ b/samples/client/petstore/ruby/spec/api/store_api_spec.rb
@@ -57,7 +57,7 @@ describe 'StoreApi' do
# unit tests for get_order_by_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 order_id ID of pet that needs to be fetched
# @param [Hash] opts the optional parameters
# @return [Order]
diff --git a/samples/client/petstore/ruby/spec/custom/pet_spec.rb b/samples/client/petstore/ruby/spec/custom/pet_spec.rb
index 8bce8cff5fc..8b2baf8ba5f 100644
--- a/samples/client/petstore/ruby/spec/custom/pet_spec.rb
+++ b/samples/client/petstore/ruby/spec/custom/pet_spec.rb
@@ -78,7 +78,7 @@ describe "Pet" do
fail 'it should raise error'
rescue Petstore::ApiError => e
expect(e.code).to eq(404)
- # skip the check as the response contains a timestamp that changes on every reponse
+ # skip the check as the response contains a timestamp that changes on every response
# expect(e.message).to eq("Error message: the server returns an error\nHTTP status code: 404\nResponse headers: {\"Date\"=>\"Tue, 26 Feb 2019 04:35:40 GMT\", \"Access-Control-Allow-Origin\"=>\"*\", \"Access-Control-Allow-Methods\"=>\"GET, POST, DELETE, PUT\", \"Access-Control-Allow-Headers\"=>\"Content-Type, api_key, Authorization\", \"Content-Type\"=>\"application/json\", \"Connection\"=>\"close\", \"Server\"=>\"Jetty(9.2.9.v20150224)\"}\nResponse body: {\"code\":1,\"type\":\"error\",\"message\":\"Pet not found\"}")
expect(e.response_body).to eq('{"code":1,"type":"error","message":"Pet not found"}')
expect(e.response_headers).to include('Content-Type')
diff --git a/samples/client/petstore/rust/hyper/petstore/docs/StoreApi.md b/samples/client/petstore/rust/hyper/petstore/docs/StoreApi.md
index c1f5b5a9c21..dbeb0169aa4 100644
--- a/samples/client/petstore/rust/hyper/petstore/docs/StoreApi.md
+++ b/samples/client/petstore/rust/hyper/petstore/docs/StoreApi.md
@@ -73,7 +73,7 @@ This endpoint does not need any parameter.
> crate::models::Order get_order_by_id(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
### Parameters
diff --git a/samples/client/petstore/rust/reqwest/petstore-async/docs/StoreApi.md b/samples/client/petstore/rust/reqwest/petstore-async/docs/StoreApi.md
index a6b3c572ccc..5796357f53b 100644
--- a/samples/client/petstore/rust/reqwest/petstore-async/docs/StoreApi.md
+++ b/samples/client/petstore/rust/reqwest/petstore-async/docs/StoreApi.md
@@ -73,7 +73,7 @@ This endpoint does not need any parameter.
> crate::models::Order get_order_by_id(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
### Parameters
diff --git a/samples/client/petstore/rust/reqwest/petstore-async/src/apis/store_api.rs b/samples/client/petstore/rust/reqwest/petstore-async/src/apis/store_api.rs
index 36d090f4f1a..ace7bc24e89 100644
--- a/samples/client/petstore/rust/reqwest/petstore-async/src/apis/store_api.rs
+++ b/samples/client/petstore/rust/reqwest/petstore-async/src/apis/store_api.rs
@@ -176,7 +176,7 @@ pub async fn get_inventory(configuration: &configuration::Configuration) -> Resu
}
}
-/// 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
pub async fn get_order_by_id(configuration: &configuration::Configuration, params: GetOrderByIdParams) -> Result, Error> {
let local_var_configuration = configuration;
diff --git a/samples/client/petstore/rust/reqwest/petstore-async/tests/pet_tests.rs b/samples/client/petstore/rust/reqwest/petstore-async/tests/pet_tests.rs
index 8ab1927deaf..78e8e21bb09 100644
--- a/samples/client/petstore/rust/reqwest/petstore-async/tests/pet_tests.rs
+++ b/samples/client/petstore/rust/reqwest/petstore-async/tests/pet_tests.rs
@@ -26,5 +26,5 @@ fn test_pet() {
// get pet
let _pet_result = petstore_reqwest_async::apis::pet_api::get_pet_by_id(&config, get_pet_params);
- // TODO Testing async functions requires some additionnal testing crates.
+ // TODO Testing async functions requires some additional testing crates.
}
diff --git a/samples/client/petstore/rust/reqwest/petstore-awsv4signature/docs/StoreApi.md b/samples/client/petstore/rust/reqwest/petstore-awsv4signature/docs/StoreApi.md
index a6b3c572ccc..5796357f53b 100644
--- a/samples/client/petstore/rust/reqwest/petstore-awsv4signature/docs/StoreApi.md
+++ b/samples/client/petstore/rust/reqwest/petstore-awsv4signature/docs/StoreApi.md
@@ -73,7 +73,7 @@ This endpoint does not need any parameter.
> crate::models::Order get_order_by_id(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
### Parameters
diff --git a/samples/client/petstore/rust/reqwest/petstore-awsv4signature/src/apis/store_api.rs b/samples/client/petstore/rust/reqwest/petstore-awsv4signature/src/apis/store_api.rs
index d50a60e411b..0c71e2c08a5 100644
--- a/samples/client/petstore/rust/reqwest/petstore-awsv4signature/src/apis/store_api.rs
+++ b/samples/client/petstore/rust/reqwest/petstore-awsv4signature/src/apis/store_api.rs
@@ -126,7 +126,7 @@ pub fn get_inventory(configuration: &configuration::Configuration, ) -> Result<:
}
}
-/// 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
pub fn get_order_by_id(configuration: &configuration::Configuration, order_id: i64) -> Result> {
let local_var_configuration = configuration;
diff --git a/samples/client/petstore/rust/reqwest/petstore/docs/StoreApi.md b/samples/client/petstore/rust/reqwest/petstore/docs/StoreApi.md
index a6b3c572ccc..5796357f53b 100644
--- a/samples/client/petstore/rust/reqwest/petstore/docs/StoreApi.md
+++ b/samples/client/petstore/rust/reqwest/petstore/docs/StoreApi.md
@@ -73,7 +73,7 @@ This endpoint does not need any parameter.
> crate::models::Order get_order_by_id(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
### Parameters
diff --git a/samples/client/petstore/rust/reqwest/petstore/src/apis/store_api.rs b/samples/client/petstore/rust/reqwest/petstore/src/apis/store_api.rs
index f142404c3f2..1a621384ddf 100644
--- a/samples/client/petstore/rust/reqwest/petstore/src/apis/store_api.rs
+++ b/samples/client/petstore/rust/reqwest/petstore/src/apis/store_api.rs
@@ -113,7 +113,7 @@ pub fn get_inventory(configuration: &configuration::Configuration, ) -> Result<:
}
}
-/// 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
pub fn get_order_by_id(configuration: &configuration::Configuration, order_id: i64) -> Result> {
let local_var_configuration = configuration;
diff --git a/samples/client/petstore/scala-akka/docs/StoreApi.md b/samples/client/petstore/scala-akka/docs/StoreApi.md
index 28f1bace83b..30ba1676ffa 100644
--- a/samples/client/petstore/scala-akka/docs/StoreApi.md
+++ b/samples/client/petstore/scala-akka/docs/StoreApi.md
@@ -177,7 +177,7 @@ ApiRequest[**Map[String, Int]**]
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
### Example
diff --git a/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/api/StoreApi.scala b/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/api/StoreApi.scala
index 6832f20dea6..d053398de23 100644
--- a/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/api/StoreApi.scala
+++ b/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/api/StoreApi.scala
@@ -55,7 +55,7 @@ class StoreApi(baseUrl: String) {
/**
- * 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
*
* Expected answers:
* code 200 : Order (successful operation)
diff --git a/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/core/ApiInvoker.scala b/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/core/ApiInvoker.scala
index 4b28ea9862e..4002e9736b7 100644
--- a/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/core/ApiInvoker.scala
+++ b/samples/client/petstore/scala-akka/src/main/scala/org/openapitools/client/core/ApiInvoker.scala
@@ -49,7 +49,7 @@ object ApiInvoker {
* Allows request execution without calling apiInvoker.execute(request)
* request.response can be used to get a future of the ApiResponse generated.
* request.result can be used to get a future of the expected ApiResponse content. If content doesn't match, a
- * Future will failed with a ClassCastException
+ * Future will fail with a ClassCastException
*
* @param request the apiRequest to be executed
*/
diff --git a/samples/client/petstore/scala-httpclient-deprecated/src/main/scala/org/openapitools/example/api/StoreApi.scala b/samples/client/petstore/scala-httpclient-deprecated/src/main/scala/org/openapitools/example/api/StoreApi.scala
index 949585575e9..63837763406 100644
--- a/samples/client/petstore/scala-httpclient-deprecated/src/main/scala/org/openapitools/example/api/StoreApi.scala
+++ b/samples/client/petstore/scala-httpclient-deprecated/src/main/scala/org/openapitools/example/api/StoreApi.scala
@@ -126,7 +126,7 @@ class StoreApi(
/**
* 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
* @return Order
@@ -141,7 +141,7 @@ class StoreApi(
/**
* Find purchase order by ID asynchronously
- * 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
* @return Future(Order)
diff --git a/samples/client/petstore/scala-httpclient/bin/org/openapitools/client/api/StoreApi.scala b/samples/client/petstore/scala-httpclient/bin/org/openapitools/client/api/StoreApi.scala
index 4328080db93..1dfdc82b993 100644
--- a/samples/client/petstore/scala-httpclient/bin/org/openapitools/client/api/StoreApi.scala
+++ b/samples/client/petstore/scala-httpclient/bin/org/openapitools/client/api/StoreApi.scala
@@ -126,7 +126,7 @@ class StoreApi(
/**
* 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
* @return Order
@@ -141,7 +141,7 @@ class StoreApi(
/**
* Find purchase order by ID asynchronously
- * 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
* @return Future(Order)
diff --git a/samples/client/petstore/scala-httpclient/git_push.sh b/samples/client/petstore/scala-httpclient/git_push.sh
index ced3be2b0c7..200e975d212 100644
--- a/samples/client/petstore/scala-httpclient/git_push.sh
+++ b/samples/client/petstore/scala-httpclient/git_push.sh
@@ -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
diff --git a/samples/client/petstore/scala-httpclient/src/main/scala/org/openapitools/client/api/StoreApi.scala b/samples/client/petstore/scala-httpclient/src/main/scala/org/openapitools/client/api/StoreApi.scala
index 51b39233850..3104619836b 100644
--- a/samples/client/petstore/scala-httpclient/src/main/scala/org/openapitools/client/api/StoreApi.scala
+++ b/samples/client/petstore/scala-httpclient/src/main/scala/org/openapitools/client/api/StoreApi.scala
@@ -126,7 +126,7 @@ class StoreApi(
/**
* 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
* @return Order
@@ -141,7 +141,7 @@ class StoreApi(
/**
* Find purchase order by ID asynchronously
- * 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
* @return Future(Order)
diff --git a/samples/client/petstore/scala-sttp/src/main/scala/org/openapitools/client/api/StoreApi.scala b/samples/client/petstore/scala-sttp/src/main/scala/org/openapitools/client/api/StoreApi.scala
index e4db9be33b9..10699532398 100644
--- a/samples/client/petstore/scala-sttp/src/main/scala/org/openapitools/client/api/StoreApi.scala
+++ b/samples/client/petstore/scala-sttp/src/main/scala/org/openapitools/client/api/StoreApi.scala
@@ -57,7 +57,7 @@ class StoreApi(baseUrl: String) {
.response(asJson[Map[String, Int]])
/**
- * 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
*
* Expected answers:
* code 200 : Order (successful operation)
diff --git a/samples/client/petstore/spring-cloud-async/src/main/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/spring-cloud-async/src/main/java/org/openapitools/api/StoreApi.java
index 9b1d6de4fe5..32116e54714 100644
--- a/samples/client/petstore/spring-cloud-async/src/main/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/spring-cloud-async/src/main/java/org/openapitools/api/StoreApi.java
@@ -88,7 +88,7 @@ public interface StoreApi {
/**
* GET /store/order/{orderId} : 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)
@@ -99,7 +99,7 @@ public interface StoreApi {
tags = { "store" },
value = "Find purchase order by ID",
nickname = "getOrderById",
- notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
response = Order.class
)
@ApiResponses({
diff --git a/samples/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/api/DefaultApi.java b/samples/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/api/DefaultApi.java
index 8b46211dc20..04a64a05c84 100644
--- a/samples/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/api/DefaultApi.java
+++ b/samples/client/petstore/spring-cloud-date-time/src/main/java/org/openapitools/api/DefaultApi.java
@@ -63,7 +63,7 @@ public interface DefaultApi {
* update with form data
*
* @param date A date path parameter (required)
- * @param visitDate Updated last vist timestamp (optional, default to 1971-12-19T03:39:57-08:00)
+ * @param visitDate Updated last visit timestamp (optional, default to 1971-12-19T03:39:57-08:00)
* @return Invalid input (status code 405)
*/
@ApiOperation(
@@ -81,7 +81,7 @@ public interface DefaultApi {
)
ResponseEntity updatePetWithForm(
@ApiParam(value = "A date path parameter", required = true, defaultValue = "1970-01-01") @PathVariable("date") @DateTimeFormat(iso = DateTimeFormat.ISO.DATE) LocalDate date,
- @ApiParam(value = "Updated last vist timestamp", defaultValue = "1971-12-19T03:39:57-08:00") @Valid @RequestParam(value = "visitDate", required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) OffsetDateTime visitDate
+ @ApiParam(value = "Updated last visit timestamp", defaultValue = "1971-12-19T03:39:57-08:00") @Valid @RequestParam(value = "visitDate", required = false) @DateTimeFormat(iso = DateTimeFormat.ISO.DATE_TIME) OffsetDateTime visitDate
);
}
diff --git a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/api/StoreApi.java
index 26f7bb20bd0..b7426d301e8 100644
--- a/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/spring-cloud-feign-without-url/src/main/java/org/openapitools/api/StoreApi.java
@@ -87,7 +87,7 @@ public interface StoreApi {
/**
* GET /store/order/{orderId} : 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)
@@ -98,7 +98,7 @@ public interface StoreApi {
tags = { "store" },
value = "Find purchase order by ID",
nickname = "getOrderById",
- notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
response = Order.class
)
@ApiResponses({
diff --git a/samples/client/petstore/spring-cloud-no-nullable/src/main/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/spring-cloud-no-nullable/src/main/java/org/openapitools/api/StoreApi.java
index e03a4fbf787..85780a64fdc 100644
--- a/samples/client/petstore/spring-cloud-no-nullable/src/main/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/spring-cloud-no-nullable/src/main/java/org/openapitools/api/StoreApi.java
@@ -72,7 +72,7 @@ public interface StoreApi {
/**
* GET /store/order/{orderId} : 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)
@@ -80,7 +80,7 @@ public interface StoreApi {
* or Order not found (status code 404)
*/
- @ApiOperation(value = "Find purchase order by ID", nickname = "getOrderById", notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions", response = Order.class, tags={ "store", })
+ @ApiOperation(value = "Find purchase order by ID", nickname = "getOrderById", notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions", response = Order.class, tags={ "store", })
@ApiResponses(value = {
@ApiResponse(code = 200, message = "successful operation", response = Order.class),
diff --git a/samples/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/api/StoreApi.java
index b24e4da04e0..43cca0751e3 100644
--- a/samples/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/spring-cloud-spring-pageable/src/main/java/org/openapitools/api/StoreApi.java
@@ -87,7 +87,7 @@ public interface StoreApi {
/**
* GET /store/order/{orderId} : 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)
@@ -98,7 +98,7 @@ public interface StoreApi {
tags = { "store" },
value = "Find purchase order by ID",
nickname = "getOrderById",
- notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
response = Order.class
)
@ApiResponses({
diff --git a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/api/StoreApi.java
index 26f7bb20bd0..b7426d301e8 100644
--- a/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/spring-cloud/src/main/java/org/openapitools/api/StoreApi.java
@@ -87,7 +87,7 @@ public interface StoreApi {
/**
* GET /store/order/{orderId} : 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)
@@ -98,7 +98,7 @@ public interface StoreApi {
tags = { "store" },
value = "Find purchase order by ID",
nickname = "getOrderById",
- notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
response = Order.class
)
@ApiResponses({
diff --git a/samples/client/petstore/spring-stubs/src/main/java/org/openapitools/api/StoreApi.java b/samples/client/petstore/spring-stubs/src/main/java/org/openapitools/api/StoreApi.java
index 128aa8b87f1..a676f2bf4d1 100644
--- a/samples/client/petstore/spring-stubs/src/main/java/org/openapitools/api/StoreApi.java
+++ b/samples/client/petstore/spring-stubs/src/main/java/org/openapitools/api/StoreApi.java
@@ -98,7 +98,7 @@ public interface StoreApi {
/**
* GET /store/order/{orderId} : 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)
@@ -109,7 +109,7 @@ public interface StoreApi {
tags = { "store" },
value = "Find purchase order by ID",
nickname = "getOrderById",
- notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generated exceptions",
+ notes = "For valid response try integer IDs with value <= 5 or > 10. Other values will generate exceptions",
response = Order.class
)
@ApiResponses({
diff --git a/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 93671ed852a..fd939fc1692 100644
--- a/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -247,7 +247,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index c8416218db1..ad60d97fa92 100644
--- a/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/alamofireLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/alamofireLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/alamofireLibrary/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/alamofireLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/alamofireLibrary/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 9c86f63bd84..d987aa3c8c0 100644
--- a/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -312,7 +312,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index 503083b5df3..04fcfacade4 100644
--- a/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/asyncAwaitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -108,7 +108,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -165,7 +165,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/asyncAwaitLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/asyncAwaitLibrary/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/asyncAwaitLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/asyncAwaitLibrary/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index a9033a06cc3..6168c1e5a2a 100644
--- a/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -290,7 +290,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index 0b1e198919f..ad4b140d701 100644
--- a/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/combineLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -101,7 +101,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -153,7 +153,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/combineLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/combineLibrary/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/combineLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/combineLibrary/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index ea6d4735390..7a6dd52e805 100644
--- a/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -244,7 +244,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index c8416218db1..ad60d97fa92 100644
--- a/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/default/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/default/docs/StoreAPI.md b/samples/client/petstore/swift5/default/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/default/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/default/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index ebd4e6d887a..2bf98b09470 100644
--- a/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -246,7 +246,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index 01e80e98e26..af2006a5566 100644
--- a/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/deprecated/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{orderId}
- - 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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/deprecated/docs/StoreAPI.md b/samples/client/petstore/swift5/deprecated/docs/StoreAPI.md
index db4d3aa1fb4..dad23c0f8f6 100644
--- a/samples/client/petstore/swift5/deprecated/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/deprecated/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 054422bbe34..8437ad00a2c 100644
--- a/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -247,7 +247,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index c8416218db1..ad60d97fa92 100644
--- a/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/frozenEnums/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/frozenEnums/docs/StoreAPI.md b/samples/client/petstore/swift5/frozenEnums/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/frozenEnums/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/frozenEnums/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index 2ca9a6df1c5..b265c06f0f9 100644
--- a/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ internal struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
internal static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 143d7aa284c..88bf373f4da 100644
--- a/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -247,7 +247,7 @@ internal class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index 78f99758e68..80fe43931da 100644
--- a/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/nonPublicApi/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ internal class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ internal class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/nonPublicApi/docs/StoreAPI.md b/samples/client/petstore/swift5/nonPublicApi/docs/StoreAPI.md
index 100cf07cdc8..37b5e114216 100644
--- a/samples/client/petstore/swift5/nonPublicApi/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/nonPublicApi/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 06cdfc06cc7..e41eadc6656 100644
--- a/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -247,7 +247,7 @@ import AnyCodable
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index 770d143f0aa..e28e22929a7 100644
--- a/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/objcCompatible/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ import AnyCodable
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ import AnyCodable
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/objcCompatible/docs/StoreAPI.md b/samples/client/petstore/swift5/objcCompatible/docs/StoreAPI.md
index dd4c3d8b044..6480c863912 100644
--- a/samples/client/petstore/swift5/objcCompatible/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/objcCompatible/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/oneOf/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/oneOf/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/oneOf/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/oneOf/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 51ed84dfc82..cb3024703f1 100644
--- a/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -248,7 +248,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index 7cd506b1f7e..bcba455ea17 100644
--- a/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/promisekitLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -83,7 +83,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -127,7 +127,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/promisekitLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/promisekitLibrary/docs/StoreAPI.md
index 1477d323926..662f1cf5b03 100644
--- a/samples/client/petstore/swift5/promisekitLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/promisekitLibrary/docs/StoreAPI.md
@@ -107,7 +107,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 93671ed852a..fd939fc1692 100644
--- a/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -247,7 +247,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index c8416218db1..ad60d97fa92 100644
--- a/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/readonlyProperties/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/readonlyProperties/docs/StoreAPI.md b/samples/client/petstore/swift5/readonlyProperties/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/readonlyProperties/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/readonlyProperties/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index f685b49335c..11b47c07c90 100644
--- a/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -247,7 +247,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index 70d00552d83..908a134c074 100644
--- a/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/resultLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/resultLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/resultLibrary/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/resultLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/resultLibrary/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 2426be2a773..c77f9e94482 100644
--- a/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -278,7 +278,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index fb827f84587..7a24e880f61 100644
--- a/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/rxswiftLibrary/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -95,7 +95,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -145,7 +145,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/rxswiftLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/rxswiftLibrary/docs/StoreAPI.md
index 8d795213c0f..ae87d585c5c 100644
--- a/samples/client/petstore/swift5/rxswiftLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/rxswiftLibrary/docs/StoreAPI.md
@@ -93,7 +93,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIHelper.swift b/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIHelper.swift
+++ b/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/PetAPI.swift b/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/PetAPI.swift
index 1d2a16db1df..84098b22ee0 100644
--- a/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/PetAPI.swift
@@ -250,7 +250,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift b/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift
index 1d449dbbb7a..7eca4142f5f 100644
--- a/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/urlsessionLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift
@@ -85,7 +85,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -129,7 +129,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/urlsessionLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/urlsessionLibrary/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/urlsessionLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/urlsessionLibrary/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/PetAPI.swift b/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/PetAPI.swift
index 5e801521501..78177ef4dd3 100644
--- a/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/PetAPI.swift
@@ -271,7 +271,7 @@ open class PetAPI {
GET /pet/{petId}
Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: `EventLoopFuture` of `ClientResponse`
@@ -308,7 +308,7 @@ open class PetAPI {
GET /pet/{petId}
Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: `EventLoopFuture` of `GetPetById`
diff --git a/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift b/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift
index d802c4c765e..a71ba07e86f 100644
--- a/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/vaporLibrary/Sources/PetstoreClient/APIs/StoreAPI.swift
@@ -71,7 +71,7 @@ open class StoreAPI {
GET /store/inventory
Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: `EventLoopFuture` of `ClientResponse`
*/
@@ -102,7 +102,7 @@ open class StoreAPI {
GET /store/inventory
Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: `EventLoopFuture` of `GetInventory`
*/
@@ -120,7 +120,7 @@ open class StoreAPI {
/**
Find purchase order by ID
GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: `EventLoopFuture` of `ClientResponse`
*/
@@ -154,7 +154,7 @@ open class StoreAPI {
/**
Find purchase order by ID
GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: `EventLoopFuture` of `GetOrderById`
*/
diff --git a/samples/client/petstore/swift5/vaporLibrary/docs/StoreAPI.md b/samples/client/petstore/swift5/vaporLibrary/docs/StoreAPI.md
index a56d51e05eb..1feb1b0e0b4 100644
--- a/samples/client/petstore/swift5/vaporLibrary/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/vaporLibrary/docs/StoreAPI.md
@@ -133,7 +133,7 @@ public enum GetInventory {
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
### Example
```swift
diff --git a/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIHelper.swift b/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
index ce35f8dbc7d..03f3b1259b0 100644
--- a/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
+++ b/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIHelper.swift
@@ -64,7 +64,7 @@ public struct APIHelper {
/// maps all values from source to query parameters
///
- /// explode attribute is respected: collection values might be either joined or split up into seperate key value pairs
+ /// explode attribute is respected: collection values might be either joined or split up into separate key value pairs
public static func mapValuesToQueryItems(_ source: [String: (wrappedValue: Any?, isExplode: Bool)]) -> [URLQueryItem]? {
let destination = source.filter { $0.value.wrappedValue != nil }.reduce(into: [URLQueryItem]()) { result, item in
if let collection = item.value.wrappedValue as? [Any?] {
diff --git a/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift b/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
index 93671ed852a..fd939fc1692 100644
--- a/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
+++ b/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/PetAPI.swift
@@ -247,7 +247,7 @@ open class PetAPI {
- GET /pet/{petId}
- Returns a single pet
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- parameter petId: (path) ID of pet to return
- returns: RequestBuilder
diff --git a/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift b/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
index c8416218db1..ad60d97fa92 100644
--- a/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
+++ b/samples/client/petstore/swift5/x-swift-hashable/PetstoreClient/Classes/OpenAPIs/APIs/StoreAPI.swift
@@ -82,7 +82,7 @@ open class StoreAPI {
- GET /store/inventory
- Returns a map of status codes to quantities
- API Key:
- - type: apiKey api_key
+ - type: apiKey api_key (HEADER)
- name: api_key
- returns: RequestBuilder<[String: Int]>
*/
@@ -126,7 +126,7 @@ open class StoreAPI {
/**
Find purchase order by ID
- GET /store/order/{order_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
- parameter orderId: (path) ID of pet that needs to be fetched
- returns: RequestBuilder
*/
diff --git a/samples/client/petstore/swift5/x-swift-hashable/docs/StoreAPI.md b/samples/client/petstore/swift5/x-swift-hashable/docs/StoreAPI.md
index b023aa9e452..edb75e33b70 100644
--- a/samples/client/petstore/swift5/x-swift-hashable/docs/StoreAPI.md
+++ b/samples/client/petstore/swift5/x-swift-hashable/docs/StoreAPI.md
@@ -113,7 +113,7 @@ This endpoint does not need any parameter.
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
### Example
```swift
diff --git a/samples/client/petstore/tiny/cpp/README.md b/samples/client/petstore/tiny/cpp/README.md
index e8bf721275b..87027780c24 100644
--- a/samples/client/petstore/tiny/cpp/README.md
+++ b/samples/client/petstore/tiny/cpp/README.md
@@ -1,6 +1,6 @@
# Documentation for OpenAPI Petstore
This is a client generator for microcontrollers on the Espressif32 platform and the Arduino framework
-After the client have been generated, you have to change these following variablies:
+After the client have been generated, you have to change these following variables:
- root.cert | Provide your service root certificate.
- src/main.cpp | Change wifi name
- src/main.cpp | Change wifi password
diff --git a/samples/client/petstore/tiny/cpp/lib/service/StoreApi.h b/samples/client/petstore/tiny/cpp/lib/service/StoreApi.h
index 1bf0db02373..3c347149c87 100644
--- a/samples/client/petstore/tiny/cpp/lib/service/StoreApi.h
+++ b/samples/client/petstore/tiny/cpp/lib/service/StoreApi.h
@@ -51,7 +51,7 @@ public:
/**
* 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*
*/
Response<
diff --git a/samples/client/petstore/typescript-angular-v12-provided-in-any/builds/default/api/store.service.ts b/samples/client/petstore/typescript-angular-v12-provided-in-any/builds/default/api/store.service.ts
index 6160c6b7c26..bf6a3e9d4b1 100644
--- a/samples/client/petstore/typescript-angular-v12-provided-in-any/builds/default/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v12-provided-in-any/builds/default/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/default/api/store.service.ts b/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/default/api/store.service.ts
index 374f8f02e75..e6256586bf9 100644
--- a/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/default/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/default/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/with-npm/api/store.service.ts b/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/with-npm/api/store.service.ts
index 374f8f02e75..e6256586bf9 100644
--- a/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/with-npm/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v12-provided-in-root/builds/with-npm/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v12-provided-in-root/pom.xml b/samples/client/petstore/typescript-angular-v12-provided-in-root/pom.xml
index f7667cb436e..66d05a023db 100644
--- a/samples/client/petstore/typescript-angular-v12-provided-in-root/pom.xml
+++ b/samples/client/petstore/typescript-angular-v12-provided-in-root/pom.xml
@@ -1,7 +1,7 @@
4.0.0
org.openapitools
- TypeScriptAngular12PestoreClientTests
+ TypeScriptAngular12PetstoreClientTests
pom
1.0-SNAPSHOT
TS Angular 12 Petstore Client Tests
diff --git a/samples/client/petstore/typescript-angular-v13-provided-in-any/builds/default/api/store.service.ts b/samples/client/petstore/typescript-angular-v13-provided-in-any/builds/default/api/store.service.ts
index 6160c6b7c26..bf6a3e9d4b1 100644
--- a/samples/client/petstore/typescript-angular-v13-provided-in-any/builds/default/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v13-provided-in-any/builds/default/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/default/api/store.service.ts b/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/default/api/store.service.ts
index 2aa584617fb..47b3c284654 100644
--- a/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/default/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/default/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/with-npm/api/store.service.ts b/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/with-npm/api/store.service.ts
index 2aa584617fb..47b3c284654 100644
--- a/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/with-npm/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v13-provided-in-root/builds/with-npm/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/default/api/store.service.ts b/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/default/api/store.service.ts
index 2aa584617fb..47b3c284654 100644
--- a/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/default/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/default/api/store.service.ts
@@ -213,7 +213,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/with-npm/api/store.service.ts b/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/with-npm/api/store.service.ts
index cc32a52fc4c..2478a3d3b0e 100644
--- a/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/with-npm/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v14-provided-in-root/builds/with-npm/api/store.service.ts
@@ -207,7 +207,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-angular-v14-query-param-object-format/api/store.service.ts b/samples/client/petstore/typescript-angular-v14-query-param-object-format/api/store.service.ts
index 04f78cae1c4..f2cd4b844fc 100644
--- a/samples/client/petstore/typescript-angular-v14-query-param-object-format/api/store.service.ts
+++ b/samples/client/petstore/typescript-angular-v14-query-param-object-format/api/store.service.ts
@@ -202,7 +202,7 @@ export class StoreService {
/**
* 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
* @param observe set whether or not to return the data Observable as the body, response or events. defaults to returning the body.
* @param reportProgress flag to report request and response progress.
diff --git a/samples/client/petstore/typescript-aurelia/default/README.md b/samples/client/petstore/typescript-aurelia/default/README.md
index 39a6c22b2e2..1475a466d64 100644
--- a/samples/client/petstore/typescript-aurelia/default/README.md
+++ b/samples/client/petstore/typescript-aurelia/default/README.md
@@ -27,7 +27,7 @@ npm run build
```
#### NPM ####
-You may publish the module to NPM. In this case, you would be able to install the module as any other NPM module. It maybe useful to use [scoped packages](https://docs.npmjs.com/misc/scope).
+You may publish the module to NPM. In this case, you would be able to install the module as any other NPM module. It may be useful to use [scoped packages](https://docs.npmjs.com/misc/scope).
You can also use `npm link` to link the module. However, this would not modify `package.json` of the installing project, as such you would need to relink every time you deploy that project.
diff --git a/samples/client/petstore/typescript-aurelia/default/StoreApi.ts b/samples/client/petstore/typescript-aurelia/default/StoreApi.ts
index feaab4b0977..3d88a821192 100644
--- a/samples/client/petstore/typescript-aurelia/default/StoreApi.ts
+++ b/samples/client/petstore/typescript-aurelia/default/StoreApi.ts
@@ -118,7 +118,7 @@ export class StoreApi extends Api {
/**
* 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 params.orderId ID of pet that needs to be fetched
*/
async getOrderById(params: IGetOrderByIdParams): Promise {
diff --git a/samples/client/petstore/typescript-axios/builds/default/api.ts b/samples/client/petstore/typescript-axios/builds/default/api.ts
index 5d2454f32f8..5bebd4db3b9 100644
--- a/samples/client/petstore/typescript-axios/builds/default/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/default/api.ts
@@ -985,7 +985,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1086,7 +1086,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1137,7 +1137,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1190,7 +1190,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/es6-target/api.ts b/samples/client/petstore/typescript-axios/builds/es6-target/api.ts
index 5d2454f32f8..5bebd4db3b9 100644
--- a/samples/client/petstore/typescript-axios/builds/es6-target/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/es6-target/api.ts
@@ -985,7 +985,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1086,7 +1086,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1137,7 +1137,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1190,7 +1190,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/test-petstore/api.ts b/samples/client/petstore/typescript-axios/builds/test-petstore/api.ts
index 1400ca36861..fa769208e5c 100644
--- a/samples/client/petstore/typescript-axios/builds/test-petstore/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/test-petstore/api.ts
@@ -4201,7 +4201,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -4302,7 +4302,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -4353,7 +4353,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -4406,7 +4406,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-complex-headers/api.ts b/samples/client/petstore/typescript-axios/builds/with-complex-headers/api.ts
index db982733cda..425fc0f4ea3 100644
--- a/samples/client/petstore/typescript-axios/builds/with-complex-headers/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-complex-headers/api.ts
@@ -1028,7 +1028,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1129,7 +1129,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1180,7 +1180,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1233,7 +1233,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-fake-endpoints-models-for-testing-with-http-signature/api.ts b/samples/client/petstore/typescript-axios/builds/with-fake-endpoints-models-for-testing-with-http-signature/api.ts
index f5c53978808..90f71ba9ff5 100644
--- a/samples/client/petstore/typescript-axios/builds/with-fake-endpoints-models-for-testing-with-http-signature/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-fake-endpoints-models-for-testing-with-http-signature/api.ts
@@ -3846,7 +3846,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -3947,7 +3947,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -3998,7 +3998,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -4051,7 +4051,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-interfaces/api.ts b/samples/client/petstore/typescript-axios/builds/with-interfaces/api.ts
index 360b0bfcb95..1f7c23fddf2 100644
--- a/samples/client/petstore/typescript-axios/builds/with-interfaces/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-interfaces/api.ts
@@ -1079,7 +1079,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1180,7 +1180,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1231,7 +1231,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1279,7 +1279,7 @@ export interface StoreApiInterface {
getInventory(options?: AxiosRequestConfig): AxiosPromise<{ [key: string]: number; }>;
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1331,7 +1331,7 @@ export class StoreApi extends BaseAPI implements StoreApiInterface {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-node-imports/api.ts b/samples/client/petstore/typescript-axios/builds/with-node-imports/api.ts
index db9e0226166..879b843a5ee 100644
--- a/samples/client/petstore/typescript-axios/builds/with-node-imports/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-node-imports/api.ts
@@ -989,7 +989,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1088,7 +1088,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1139,7 +1139,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1192,7 +1192,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-npm-version-and-separate-models-and-api/api/another/level/store-api.ts b/samples/client/petstore/typescript-axios/builds/with-npm-version-and-separate-models-and-api/api/another/level/store-api.ts
index bf058d959f5..19227a79b30 100644
--- a/samples/client/petstore/typescript-axios/builds/with-npm-version-and-separate-models-and-api/api/another/level/store-api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-npm-version-and-separate-models-and-api/api/another/level/store-api.ts
@@ -96,7 +96,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -197,7 +197,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -248,7 +248,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -301,7 +301,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-npm-version/api.ts b/samples/client/petstore/typescript-axios/builds/with-npm-version/api.ts
index 5d2454f32f8..5bebd4db3b9 100644
--- a/samples/client/petstore/typescript-axios/builds/with-npm-version/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-npm-version/api.ts
@@ -985,7 +985,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1086,7 +1086,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1137,7 +1137,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1190,7 +1190,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-npm-version/pom.xml b/samples/client/petstore/typescript-axios/builds/with-npm-version/pom.xml
index 453d0ba34df..6255ece5418 100644
--- a/samples/client/petstore/typescript-axios/builds/with-npm-version/pom.xml
+++ b/samples/client/petstore/typescript-axios/builds/with-npm-version/pom.xml
@@ -1,7 +1,7 @@
4.0.0
org.openapitools
- TSAxiosPestoreTests
+ TSAxiosPetstoreTests
pom
1.0-SNAPSHOT
TS Axios Petstore Test Client
diff --git a/samples/client/petstore/typescript-axios/builds/with-single-request-parameters/api.ts b/samples/client/petstore/typescript-axios/builds/with-single-request-parameters/api.ts
index 08dc38e93d4..3de428e657a 100644
--- a/samples/client/petstore/typescript-axios/builds/with-single-request-parameters/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-single-request-parameters/api.ts
@@ -1127,7 +1127,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1226,7 +1226,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1277,7 +1277,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1372,7 +1372,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {StoreApiGetOrderByIdRequest} requestParameters Request parameters.
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/builds/with-string-enums/api.ts b/samples/client/petstore/typescript-axios/builds/with-string-enums/api.ts
index 2ef7ef2a896..140bd02c74c 100644
--- a/samples/client/petstore/typescript-axios/builds/with-string-enums/api.ts
+++ b/samples/client/petstore/typescript-axios/builds/with-string-enums/api.ts
@@ -989,7 +989,7 @@ export const StoreApiAxiosParamCreator = function (configuration?: Configuration
};
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1090,7 +1090,7 @@ export const StoreApiFp = function(configuration?: Configuration) {
return createRequestFunction(localVarAxiosArgs, globalAxios, BASE_PATH, configuration);
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1141,7 +1141,7 @@ export const StoreApiFactory = function (configuration?: Configuration, basePath
return localVarFp.getInventory(options).then((request) => request(axios, basePath));
},
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
@@ -1194,7 +1194,7 @@ export class StoreApi extends BaseAPI {
}
/**
- * 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
* @summary Find purchase order by ID
* @param {number} orderId ID of pet that needs to be fetched
* @param {*} [options] Override http request option.
diff --git a/samples/client/petstore/typescript-axios/tests/default/pom.xml b/samples/client/petstore/typescript-axios/tests/default/pom.xml
index 49c179c809c..62e700087e8 100644
--- a/samples/client/petstore/typescript-axios/tests/default/pom.xml
+++ b/samples/client/petstore/typescript-axios/tests/default/pom.xml
@@ -1,7 +1,7 @@
4.0.0
org.openapitools
- TypeScriptAxiosPestoreClientTests
+ TypeScriptAxiosPetstoreClientTests
pom
1.0-SNAPSHOT
TS Axios Petstore Test Client
diff --git a/samples/client/petstore/typescript-fetch/builds/allOf-readonly/runtime.ts b/samples/client/petstore/typescript-fetch/builds/allOf-readonly/runtime.ts
index 04cb4f94cd7..8e0b06dca68 100644
--- a/samples/client/petstore/typescript-fetch/builds/allOf-readonly/runtime.ts
+++ b/samples/client/petstore/typescript-fetch/builds/allOf-readonly/runtime.ts
@@ -146,7 +146,7 @@ export class BaseAPI {
credentials: this.configuration.credentials,
};
- const overridedInit: RequestInit = {
+ const overriddenInit: RequestInit = {
...initParams,
...(await initOverrideFn({
init: initParams,
@@ -155,13 +155,13 @@ export class BaseAPI {
};
const init: RequestInit = {
- ...overridedInit,
+ ...overriddenInit,
body:
- isFormData(overridedInit.body) ||
- overridedInit.body instanceof URLSearchParams ||
- isBlob(overridedInit.body)
- ? overridedInit.body
- : JSON.stringify(overridedInit.body),
+ isFormData(overriddenInit.body) ||
+ overriddenInit.body instanceof URLSearchParams ||
+ isBlob(overriddenInit.body)
+ ? overriddenInit.body
+ : JSON.stringify(overriddenInit.body),
};
return { url, init };
diff --git a/samples/client/petstore/typescript-fetch/builds/default-v3.0/apis/StoreApi.ts b/samples/client/petstore/typescript-fetch/builds/default-v3.0/apis/StoreApi.ts
index d2c11b37b08..a4bf1d0d37b 100644
--- a/samples/client/petstore/typescript-fetch/builds/default-v3.0/apis/StoreApi.ts
+++ b/samples/client/petstore/typescript-fetch/builds/default-v3.0/apis/StoreApi.ts
@@ -103,7 +103,7 @@ export class StoreApi extends runtime.BaseAPI {
}
/**
- * 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
* Find purchase order by ID
*/
async getOrderByIdRaw(requestParameters: GetOrderByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise> {
@@ -126,7 +126,7 @@ export class StoreApi extends runtime.BaseAPI {
}
/**
- * 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
* Find purchase order by ID
*/
async getOrderById(requestParameters: GetOrderByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise {
diff --git a/samples/client/petstore/typescript-fetch/builds/default-v3.0/runtime.ts b/samples/client/petstore/typescript-fetch/builds/default-v3.0/runtime.ts
index 99991b9321a..2c942d95a3b 100644
--- a/samples/client/petstore/typescript-fetch/builds/default-v3.0/runtime.ts
+++ b/samples/client/petstore/typescript-fetch/builds/default-v3.0/runtime.ts
@@ -146,7 +146,7 @@ export class BaseAPI {
credentials: this.configuration.credentials,
};
- const overridedInit: RequestInit = {
+ const overriddenInit: RequestInit = {
...initParams,
...(await initOverrideFn({
init: initParams,
@@ -155,13 +155,13 @@ export class BaseAPI {
};
const init: RequestInit = {
- ...overridedInit,
+ ...overriddenInit,
body:
- isFormData(overridedInit.body) ||
- overridedInit.body instanceof URLSearchParams ||
- isBlob(overridedInit.body)
- ? overridedInit.body
- : JSON.stringify(overridedInit.body),
+ isFormData(overriddenInit.body) ||
+ overriddenInit.body instanceof URLSearchParams ||
+ isBlob(overriddenInit.body)
+ ? overriddenInit.body
+ : JSON.stringify(overriddenInit.body),
};
return { url, init };
diff --git a/samples/client/petstore/typescript-fetch/builds/default/apis/StoreApi.ts b/samples/client/petstore/typescript-fetch/builds/default/apis/StoreApi.ts
index 203c4b9627a..8f9d34b114d 100644
--- a/samples/client/petstore/typescript-fetch/builds/default/apis/StoreApi.ts
+++ b/samples/client/petstore/typescript-fetch/builds/default/apis/StoreApi.ts
@@ -103,7 +103,7 @@ export class StoreApi extends runtime.BaseAPI {
}
/**
- * 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
* Find purchase order by ID
*/
async getOrderByIdRaw(requestParameters: GetOrderByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise> {
@@ -126,7 +126,7 @@ export class StoreApi extends runtime.BaseAPI {
}
/**
- * 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
* Find purchase order by ID
*/
async getOrderById(requestParameters: GetOrderByIdRequest, initOverrides?: RequestInit | runtime.InitOverrideFunction): Promise {
diff --git a/samples/client/petstore/typescript-fetch/builds/default/pom.xml b/samples/client/petstore/typescript-fetch/builds/default/pom.xml
index b40b83a0c75..60f2f11da1f 100644
--- a/samples/client/petstore/typescript-fetch/builds/default/pom.xml
+++ b/samples/client/petstore/typescript-fetch/builds/default/pom.xml
@@ -1,7 +1,7 @@