From d942b6a133e0cb4d933da90d99cf57204e731255 Mon Sep 17 00:00:00 2001 From: Adam Kemepnich Date: Mon, 31 Jul 2017 12:59:39 -0500 Subject: [PATCH] Update devices.rst (#630) Fixed a syntactical error --- smartapp-developers-guide/devices.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/smartapp-developers-guide/devices.rst b/smartapp-developers-guide/devices.rst index f7dd439c..56825ab6 100644 --- a/smartapp-developers-guide/devices.rst +++ b/smartapp-developers-guide/devices.rst @@ -264,7 +264,7 @@ Here's a simple example of getting all switch state values and logging the switc switchVal == "on" ? true : false } - log.debug "${onSwitches.size() out of ${switches.size()} switches are on" + log.debug "${onSwitches.size()} out of ${switches.size()} switches are on" } ----