[docs] use correct separator (#11386)

This commit is contained in:
aderito7 2022-01-24 05:12:59 +02:00 committed by GitHub
parent 57e3ed2930
commit 549715ebf2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 5 additions and 5 deletions

View File

@ -36,7 +36,7 @@ _How_ you provide values to options also depends on the tool. OpenAPI Generator
openApiGenerate { openApiGenerate {
globalProperties = [ globalProperties = [
apis: "", apis: "",
models: "User,Pet" models: "User:Pet"
] ]
} }
``` ```

View File

@ -398,7 +398,7 @@ openApiGenerate {
// other settings omitted // other settings omitted
globalProperties = [ globalProperties = [
apis: "", apis: "",
models: "User,Pet" models: "User:Pet"
] ]
} }
---- ----

View File

@ -116,12 +116,12 @@ For configuration options documented as a **map** above, the key/value options m
``` ```
This configuration node location will match that of the plugin configuration examples at the top of this document and in the section below. Here, `option` matches in option name in the first column in the table from the previous section. This configuration node location will match that of the plugin configuration examples at the top of this document and in the section below. Here, `option` matches in option name in the first column in the table from the previous section.
The `key` and `value` text are any values you'd like to provide for that option. As an example, to configure `globalProperties` to match the `--global-property models=User,Pet` example from our [Selective Generation](https://openapi-generator.tech/docs/customization#selective-generation) documentation, see below. The `key` and `value` text are any values you'd like to provide for that option. As an example, to configure `globalProperties` to match the `--global-property models=User:Pet` example from our [Selective Generation](https://openapi-generator.tech/docs/customization#selective-generation) documentation, see below.
```xml ```xml
<configuration> <configuration>
<globalProperties> <globalProperties>
<models>User,Pet</models> <models>User:Pet</models>
</globalProperties> </globalProperties>
</configuration> </configuration>
``` ```
@ -131,7 +131,7 @@ Not that some of these environment variable options may overwrite or conflict wi
```xml ```xml
<configuration> <configuration>
<generateModels>true</generateModels> <generateModels>true</generateModels>
<modelsToGenerate>User,Pet</modelsToGenerate> <modelsToGenerate>User:Pet</modelsToGenerate>
</configuration> </configuration>
``` ```