Skip to content

Commit f7da970

Browse files
author
Jimaco Brannian
committed
fixed spelling errors
1 parent fcad68c commit f7da970

File tree

5 files changed

+11
-11
lines changed

5 files changed

+11
-11
lines changed

articles/iot-hub/iot-hub-csharp-csharp-c2d.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ This tutorial builds on [Send telemetry from a device to an IoT hub](quickstart-
2727

2828
* Receive cloud-to-device messages on a device.
2929

30-
* From your solution back end, request delivery acknowledgement (*feedback*) for messages sent to a device from IoT Hub.
30+
* From your solution back end, request delivery acknowledgment (*feedback*) for messages sent to a device from IoT Hub.
3131

3232
You can find more information on cloud-to-device messages in [D2C and C2D Messaging with IoT Hub](iot-hub-devguide-messaging.md).
3333

3434
At the end of this tutorial, you run two .NET console apps.
3535

3636
* **SimulatedDevice**, a modified version of the app created in [Send telemetry from a device to an IoT hub](quickstart-send-telemetry-dotnet.md), which connects to your IoT hub and receives cloud-to-device messages.
3737

38-
* **SendCloudToDevice**, which sends a cloud-to-device message to the device app through IoT Hub, and then receives its delivery acknowledgement.
38+
* **SendCloudToDevice**, which sends a cloud-to-device message to the device app through IoT Hub, and then receives its delivery acknowledgment.
3939

4040
> [!NOTE]
4141
> IoT Hub has SDK support for many device platforms and languages (including C, Java, and Javascript) through [Azure IoT device SDKs](iot-hub-devguide-sdks.md). For step-by-step instructions on how to connect your device to this tutorial's code, and generally to Azure IoT Hub, see the [IoT Hub developer guide](iot-hub-devguide.md).
@@ -166,7 +166,7 @@ Now you write a .NET console app that sends cloud-to-device messages to the devi
166166

167167
## Receive delivery feedback
168168

169-
It is possible to request delivery (or expiration) acknowledgements from IoT Hub for each cloud-to-device message. This option enables the solution back end to easily inform retry or compensation logic. For more information about cloud-to-device feedback, see [D2C and C2D Messaging with IoT Hub](iot-hub-devguide-messaging.md).
169+
It is possible to request delivery (or expiration) acknowledgments from IoT Hub for each cloud-to-device message. This option enables the solution back end to easily inform retry or compensation logic. For more information about cloud-to-device feedback, see [D2C and C2D Messaging with IoT Hub](iot-hub-devguide-messaging.md).
170170

171171
In this section, you modify the **SendCloudToDevice** app to request feedback, and receive it from the IoT hub.
172172

articles/iot-hub/iot-hub-ios-swift-c2d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,15 +21,15 @@ This tutorial shows you how to:
2121

2222
* Receive cloud-to-device messages on a device.
2323

24-
* From your solution back end, request delivery acknowledgement (*feedback*) for messages sent to a device from IoT Hub.
24+
* From your solution back end, request delivery acknowledgment (*feedback*) for messages sent to a device from IoT Hub.
2525

2626
You can find more information on cloud-to-device messages in the [messaging section of the IoT Hub developer guide](iot-hub-devguide-messaging.md).
2727

2828
At the end of this article, you run two Swift iOS projects:
2929

3030
* **sample-device**, the same app created in [Send telemetry from a device to an IoT hub](quickstart-send-telemetry-ios.md), which connects to your IoT hub and receives cloud-to-device messages.
3131

32-
* **sample-service**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgement.
32+
* **sample-service**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgment.
3333

3434
> [!NOTE]
3535
> IoT Hub has SDK support for many device platforms and languages (including C, Java, and Javascript) through Azure IoT device SDKs. For step-by-step instructions on how to connect your device to this tutorial's code, and generally to Azure IoT Hub, see the [Azure IoT Developer Center](https://www.azure.com/develop/iot).

articles/iot-hub/iot-hub-java-java-c2d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ This tutorial builds on [Send telemetry from a device to an IoT hub](quickstart-
2525

2626
* Receive cloud-to-device messages on a device.
2727

28-
* From your solution back end, request delivery acknowledgement (*feedback*) for messages sent to a device from IoT Hub.
28+
* From your solution back end, request delivery acknowledgment (*feedback*) for messages sent to a device from IoT Hub.
2929

3030
You can find more information on [cloud-to-device messages in the IoT Hub developer guide](iot-hub-devguide-messaging.md).
3131

3232
At the end of this tutorial, you run two Java console apps:
3333

3434
* **simulated-device**, a modified version of the app created in [Send telemetry from a device to an IoT hub](quickstart-send-telemetry-java.md), which connects to your IoT hub and receives cloud-to-device messages.
3535

36-
* **send-c2d-messages**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgement.
36+
* **send-c2d-messages**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgment.
3737

3838
> [!NOTE]
3939
> IoT Hub has SDK support for many device platforms and languages (including C, Java, and Javascript) through Azure IoT device SDKs. For step-by-step instructions on how to connect your device to this tutorial's code, and generally to Azure IoT Hub, see the [Azure IoT Developer Center](https://azure.microsoft.com/develop/iot).

articles/iot-hub/iot-hub-node-node-c2d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,15 +25,15 @@ This tutorial builds on [Send telemetry from a device to an IoT hub](quickstart-
2525

2626
* From your solution back end, send cloud-to-device messages to a single device through IoT Hub.
2727
* Receive cloud-to-device messages on a device.
28-
* From your solution back end, request delivery acknowledgement (*feedback*) for messages sent to a device from IoT Hub.
28+
* From your solution back end, request delivery acknowledgment (*feedback*) for messages sent to a device from IoT Hub.
2929

3030
You can find more information on cloud-to-device messages in the [IoT Hub developer guide](iot-hub-devguide-messaging.md).
3131

3232
At the end of this tutorial, you run two Node.js console apps:
3333

3434
* **SimulatedDevice**, a modified version of the app created in [Send telemetry from a device to an IoT hub](quickstart-send-telemetry-node.md), which connects to your IoT hub and receives cloud-to-device messages.
3535

36-
* **SendCloudToDeviceMessage**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgement.
36+
* **SendCloudToDeviceMessage**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgment.
3737

3838
> [!NOTE]
3939
> IoT Hub has SDK support for many device platforms and languages (including C, Java, and Javascript) through Azure IoT device SDKs. For step-by-step instructions on how to connect your device to this tutorial's code, and generally to Azure IoT Hub, see the [Azure IoT Developer Center](https://azure.microsoft.com/develop/iot).

articles/iot-hub/iot-hub-python-python-c2d.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -27,15 +27,15 @@ This tutorial builds on [Send telemetry from a device to an IoT hub](quickstart-
2727

2828
* Receive cloud-to-device messages on a device.
2929

30-
* From your solution back end, request delivery acknowledgement (*feedback*) for messages sent to a device from IoT Hub.
30+
* From your solution back end, request delivery acknowledgment (*feedback*) for messages sent to a device from IoT Hub.
3131

3232
You can find more information on cloud-to-device messages in the [IoT Hub developer guide](iot-hub-devguide-messaging.md).
3333

3434
At the end of this tutorial, you run two Python console apps:
3535

3636
* **SimulatedDevice.py**, a modified version of the app created in [Send telemetry from a device to an IoT hub](quickstart-send-telemetry-python.md), which connects to your IoT hub and receives cloud-to-device messages.
3737

38-
* **SendCloudToDeviceMessage.py**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgement.
38+
* **SendCloudToDeviceMessage.py**, which sends a cloud-to-device message to the simulated device app through IoT Hub, and then receives its delivery acknowledgment.
3939

4040
> [!NOTE]
4141
> IoT Hub has SDK support for many device platforms and languages (including C, Java, and Javascript) through Azure IoT device SDKs. For step-by-step instructions on how to connect your device to this tutorial's code, and generally to Azure IoT Hub, see the [Azure IoT Developer Center](https://www.azure.com/develop/iot).

0 commit comments

Comments
 (0)