Fix use of incorrect variable type (#781)

This commit is contained in:
Franck Nijhof 2021-01-26 11:19:02 +01:00 committed by GitHub
parent cc2f367ac9
commit f71271b944
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -20,7 +20,7 @@ To ensure that the documentation for Home Assistant is consistent and easy to fo
- Configuration variables must document the requirement status (`false` or `true`).
- Configuration variables must document the default value, if any.
- Configuration variables must document the accepted value types (see [Configuration variables details](documenting/create-page.md#configuration)).
- For configuration variables that accept multiple types, separate the types with a comma (i.e. `string, int`).
- For configuration variables that accept multiple types, separate the types with a comma (i.e. `string, integer`).
- Use YAML sequence syntax in the sample code if it is supported.
- All examples should be formatted to be included in `configuration.yaml` unless explicitly stated.
- Use capital letters and `_` to indicate that the value needs to be replaced. E.g., `api_key: YOUR_API_KEY` or `api_key: REPLACE_ME`.