Skip to content

Commit

Permalink
fix typo related to schema mapping optino (OpenAPITools#13793)
Browse files Browse the repository at this point in the history
  • Loading branch information
wing328 authored Oct 22, 2022
1 parent ca56242 commit 643b4f7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -903,7 +903,7 @@ private String addSchemas(String name, Schema schema) {
addGenerated(name, schema);
openAPI.getComponents().addSchemas(name, schema);
if (!name.equals(schema.getTitle()) && !inlineSchemaNameMappingValues.contains(name)) {
LOGGER.info("Inline schema created as {}. To have complete control of the model name, set the `title` field or use the inlineSchemaNameMapping option (--inline-schema-name-mapping in CLI).", name);
LOGGER.info("Inline schema created as {}. To have complete control of the model name, set the `title` field or use the inlineSchemaNameMapping option (--inline-schema-name-mappings in CLI).", name);
}

uniqueNames.add(name);
Expand Down

0 comments on commit 643b4f7

Please sign in to comment.