Fixed wrong syntax (#1781)

This commit is contained in:
Daniel Perna 2017-01-15 20:43:40 +01:00 committed by Fabian Affolter
parent 071c283dd1
commit e02cffa43a
No known key found for this signature in database
GPG Key ID: E23CD2DD36A4397F

View File

@ -1160,7 +1160,7 @@ Each service has different parameter requirements. This argument allows you to s
#### {% linkable_title Examples %}
```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")
```
### {% linkable_title turn_on() %}