Skip to content

Commit e7fb667

Browse files
authored
doc: fix formatting in RELEASE_NOTES.md
1 parent 1926f31 commit e7fb667

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

doc/RELEASE_NOTES.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The subscription dialog features a lot of new options to set the behaviour of th
99
<img src="./images/node-settings-config-subscription.png" alt="Configuration node settings" width="400px"/>
1010

1111
For example, the `Sampling Interval` allows to sample the value on the server side with a higher frequency.
12-
A detailed explenation of all settings is available in the [Reference](REFERENCE.md).
12+
A detailed explanation of all settings is available in the [Reference](REFERENCE.md).
1313

1414
## Limits for number of active requests
1515

@@ -28,7 +28,7 @@ The subscription node now has a "dynamic" mode which allows the path to be dynam
2828
fixed at the time of deployment of the flow.
2929
After setting the node to `dynamic`, the node gets an input connector which accepts the following `msg` to subscribe to a data layer path:
3030

31-
```JSON
31+
```javascript
3232
msg = {
3333
"action": "subscribe",
3434
"path": "<path to subscribe>"
@@ -37,7 +37,7 @@ msg = {
3737

3838
Or to unsubscribe from the current data layer path:
3939

40-
```JSON
40+
```javascript
4141
msg = {
4242
"action": "unsubscribe"
4343
}
@@ -48,10 +48,10 @@ msg = {
4848
Using the dynamic subscription features it is now also possible to subscribe to more than a single ctrlX Data Layer path with a single Node-RED subscription node.
4949
This can be done by passing an array of addresses for the `path`.
5050

51-
```JSON
51+
```javascript
5252
msg = {
5353
"action": "subscribe",
54-
"path": ["<path to subscribe>", "<path to subscribe>", "<path to subscribe>", ...]
54+
"path": ["<path to subscribe>", "<path to subscribe>", "<path to subscribe>", "..."]
5555
}
5656
```
5757

0 commit comments

Comments
 (0)