diff --git a/Rule-Cookbook.md b/Rule-Cookbook.md index 28330b9d..7c56a7e2 100644 --- a/Rule-Cookbook.md +++ b/Rule-Cookbook.md @@ -473,7 +473,7 @@ Rule on switch1#state=1 do var1 100 endon on switch1#state=0 do backlog var1 0; ` on button1#state do backlog power1 %value%;` - * On Button press the Light in the Staircase will switch on/off + * On Button press the Light will toggle on/off ` RuleTimer1 600 endon` @@ -481,7 +481,7 @@ Rule on switch1#state=1 do var1 100 endon on switch1#state=0 do backlog var1 0; ` on Rules#Timer=1 do power1 off endon` - * After the RuleTimer1 expires the light will be switched off (if you forgot to switch it off) + * After the RuleTimer1 expires the light will be turned off (if you forgot to turn it off) [Back To Top](#top)