From dcea238661c1345e7004f6c60b9c9c02a68753dd Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Daniel=20H=C3=B8yer=20Iversen?= Date: Fri, 29 May 2020 08:00:20 +0200 Subject: [PATCH] Fix some mistakes in documentation (#36246) --- homeassistant/components/hitron_coda/device_tracker.py | 2 +- homeassistant/components/keenetic_ndms2/device_tracker.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/homeassistant/components/hitron_coda/device_tracker.py b/homeassistant/components/hitron_coda/device_tracker.py index a49e3cc6d21..ace6540fe71 100644 --- a/homeassistant/components/hitron_coda/device_tracker.py +++ b/homeassistant/components/hitron_coda/device_tracker.py @@ -34,7 +34,7 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend( def get_scanner(_hass, config): - """Validate the configuration and return a Nmap scanner.""" + """Validate the configuration and return a Hitron CODA-4582U scanner.""" scanner = HitronCODADeviceScanner(config[DOMAIN]) return scanner if scanner.success_init else None diff --git a/homeassistant/components/keenetic_ndms2/device_tracker.py b/homeassistant/components/keenetic_ndms2/device_tracker.py index 598e29cf583..d98806dfc05 100644 --- a/homeassistant/components/keenetic_ndms2/device_tracker.py +++ b/homeassistant/components/keenetic_ndms2/device_tracker.py @@ -35,7 +35,7 @@ PLATFORM_SCHEMA = PLATFORM_SCHEMA.extend( def get_scanner(_hass, config): - """Validate the configuration and return a Nmap scanner.""" + """Validate the configuration and return a Keenetic NDMS2 scanner.""" scanner = KeeneticNDMS2DeviceScanner(config[DOMAIN]) return scanner if scanner.success_init else None