From c353bed9dd6950bf72f814d3d0cf8a1a76822882 Mon Sep 17 00:00:00 2001 From: Otto Winter Date: Tue, 14 Jul 2020 18:45:53 +0200 Subject: [PATCH] Use inclusive terminology (#685) --- cookbook/arduino_port_extender.rst | 2 +- guides/contributing.rst | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cookbook/arduino_port_extender.rst b/cookbook/arduino_port_extender.rst index 369098eda..fad7ff9da 100644 --- a/cookbook/arduino_port_extender.rst +++ b/cookbook/arduino_port_extender.rst @@ -58,7 +58,7 @@ individual IOs. auto ape_component = new ArduinoPortExpander(i2c_component, 0x08); return {ape_component}; -By default the I²C address is ``0x08`` but you can change it on the Arduino sketch so you can have more slaves +By default the I²C address is ``0x08`` but you can change it on the Arduino sketch so you can have more devices on the same bus. Now it is time to add the ports. diff --git a/guides/contributing.rst b/guides/contributing.rst index 97813b3e9..0f73076ff 100644 --- a/guides/contributing.rst +++ b/guides/contributing.rst @@ -546,7 +546,7 @@ loader. These are: - ``CONFLICTS_WITH``: Mark a list of components as conflicting with this integration. If the user has one of them in the config, a validation error will be generated. -- ``ESP_PLATFORMS``: Provide a whitelist of ESP types this integration works with. +- ``ESP_PLATFORMS``: Provide a list of allowed ESP types this integration works with. Codebase Standards ------------------