From 7a4ed88ab1daa34119a69f43a7d8f5c3dcfd9ccf Mon Sep 17 00:00:00 2001 From: Spencer Owen Date: Fri, 21 Oct 2016 00:55:35 -0600 Subject: [PATCH] fix missing space (#1287) --- source/getting-started/automation.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/getting-started/automation.markdown b/source/getting-started/automation.markdown index 27d026a43f8..dea2435fd7e 100644 --- a/source/getting-started/automation.markdown +++ b/source/getting-started/automation.markdown @@ -31,7 +31,7 @@ The first line is the trigger of the automation rule. Triggers describe events t The second line is the condition part of the automation rule. Conditions are optional tests that can limit an automation rule to only work in your specific use cases. A condition will test against the current state of the system. This includes the current time, devices, people and other things like the sun. In this case we only want to act when the sun has set. -The third part is the action which will be performed when a rule is triggered and all conditions are met.For example, it can turn a light on, set the temperature on your thermostat or activate a scene. +The third part is the action which will be performed when a rule is triggered and all conditions are met. For example, it can turn a light on, set the temperature on your thermostat or activate a scene.

The difference between a condition and a trigger can be confusing as they are very similar. Triggers look at the actions, while conditions look at the results: turning a light on vs a light being on.