Fixed backticks in rules-dsl.md

Signed-off-by: Jerome Luckenbach <github@luckenba.ch>
pull/869/head
Jerome Luckenbach 2019-01-13 11:54:14 +01:00
parent b087d15dff
commit 69175e38d0
1 changed files with 2 additions and 2 deletions

View File

@ -299,8 +299,8 @@ The following table summarizes the impact of the two manipulator commands on the
| *Change through Binding* | ⚡ rule fires | ⚡ rule fires | (depends) |
**Beware:**
In most cases, a rule with a trigger of ```receveived update``` will fire following the command ```sendCommand``` as:
- openHAB auto-updates the status of Items for which the item definition does not contain ```autoupdate="false"```
In most cases, a rule with a trigger of `receveived update` will fire following the command `sendCommand` as:
- openHAB auto-updates the status of Items for which the item definition does not contain `autoupdate="false"`
- the Thing sends an status update to the Item.
Besides the specific manipulator command methods `MyItem.sendCommand(<new_state>)` and `MyItem.postUpdate(<new_state>)`, generic manipulators in the form of `sendCommand(MyItem, <new_state>)` and `postUpdate(MyItem, <new_state>)` are available. The specific versions is normally recommended.