Skip to content

Commit d43f67b

Browse files
committed
Updates
1 parent 2cac3a9 commit d43f67b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

includes/iot-hub-howto-module-twins-node.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -200,7 +200,7 @@ For example:
200200
};
201201
```
202202
203-
1. This code sets up a desired properties change event listener that triggers for any changes within the `properties.desired.climate` property grouping. If there's a desired property change within this group, min and max temperature change messages are displayed to the console:
203+
1. This code sets up a desired property change event listener that triggers for any changes within the `properties.desired.climate` property grouping. If there's a desired property change within this group, min and max temperature change messages are displayed to the console:
204204
205205
```javascript
206206
twin.on('properties.desired.climate', function (delta) {
@@ -242,7 +242,7 @@ You can set up a listener for a single property change. In this example, the cod
242242
243243
#### Complete example
244244
245-
This example encapsulates the principles of this section, including callback funcation nesting.
245+
This example encapsulates the principles of this section, including callback function nesting.
246246
247247
```javascript
248248
var Client = require('azure-iot-device').Client;
@@ -296,7 +296,7 @@ client.open(function(err) {
296296
297297
### Device SDK samples
298298
299-
The Azure IoT SDK for Node.js provides working samples of a device apps that handle module identity twin tasks. For more information, see:
299+
The Azure IoT SDK for Node.js provides working samples of device apps that handle module identity twin tasks. For more information, see:
300300
301301
* [Module Identity Twin](https://github.com/Azure/azure-iot-sdk-node/blob/main/e2etests/test/module_twin.js)
302302
* [Module Test Helper](https://github.com/Azure/azure-iot-sdk-node/blob/main/e2etests/test/module_test_helper.js)

0 commit comments

Comments
 (0)