From d5b710808414f92748afebff2113c5357fa538d7 Mon Sep 17 00:00:00 2001 From: Audric Schiltknecht Date: Fri, 29 Sep 2017 02:19:05 -0400 Subject: [PATCH] Fix minor grammar error (#3462) Remove double negation --- source/developers/development_guidelines.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/developers/development_guidelines.markdown b/source/developers/development_guidelines.markdown index 46eb7f3c852..d5fa2359e1c 100644 --- a/source/developers/development_guidelines.markdown +++ b/source/developers/development_guidelines.markdown @@ -67,7 +67,7 @@ REQUIREMENTS = ['xmltodict==0.11.0'] ### {% linkable_title Log messages %} -There is no need to add the platform or component name to the log messages. This will be added automatically. Like `syslog` messages there shouldn't be no period at the end. Try to avoid brackets and additional quotes around the output to make it easier for users to parse the log. A widely style is shown below but you are free to compose the messages as you like. +There is no need to add the platform or component name to the log messages. This will be added automatically. Like `syslog` messages there shouldn't be any period at the end. Try to avoid brackets and additional quotes around the output to make it easier for users to parse the log. A widely style is shown below but you are free to compose the messages as you like. ```python _LOGGER.error("No route to device: %s", self._resource)