Fixed wrong syntax (#1781)

This commit is contained in:
Daniel Perna 2017-01-15 20:43:40 +01:00 committed by Fabian Affolter
parent 5d9797c0fc
commit 6c5c2f2916

View File

@ -1160,7 +1160,7 @@ Each service has different parameter requirements. This argument allows you to s
#### {% linkable_title Examples %} #### {% linkable_title Examples %}
```python ```python
self.call_service("light.turn_on", entity_id = "light/office_lamp", color_name = "red") self.call_service("light/turn_on", entity_id = "light.office_lamp", color_name = "red")
self.call_service("notify/notify", title = "Hello", message = "Hello World") self.call_service("notify/notify", title = "Hello", message = "Hello World")
``` ```
### {% linkable_title turn_on() %} ### {% linkable_title turn_on() %}