Skip to content

Commit 253e322

Browse files
committed
Fix problems reported by PR Reviewer @GitHubber17.
1 parent aeefae0 commit 253e322

File tree

2 files changed

+12
-12
lines changed

2 files changed

+12
-12
lines changed

articles/iot-hub/iot-hub-configuration-best-practices.md

+9-9
Original file line numberDiff line numberDiff line change
@@ -35,10 +35,10 @@ The following are best practices for hardware manufacturers and integrators deal
3535

3636
* **Implement [device twins](iot-hub-devguide-device-twins.md):** Device twins enable synchronizing desired configuration from the cloud and for reporting current configuration and device properties. The best way to implement device twins within embedded applications is through the [Azure IoT SDKs](https://github.com/Azure/azure-iot-sdks). Device twins are best suited for configuration because they:
3737

38-
1. Support bi-directional communication.
39-
2. Allow for both connected and disconnected device states.
40-
3. Follow the principle of eventual consistency.
41-
4. Are fully queriable in the cloud.
38+
* Support bi-directional communication.
39+
* Allow for both connected and disconnected device states.
40+
* Follow the principle of eventual consistency.
41+
* Are fully queriable in the cloud.
4242

4343
* **Structure the device twin for device management:** The device twin should be structured such that device management properties are logically grouped together into sections. Doing so will enable configuration changes to be isolated without impacting other sections of the twin. For example, create a section within desired properties for firmware, another section for software, and a third section for network settings.
4444

@@ -52,10 +52,10 @@ The following are best practices for IoT solution developers who are building sy
5252

5353
* **Implement [device twins](iot-hub-devguide-device-twins.md):** Device twins enable synchronizing desired configuration from the cloud and for reporting current configuration and device properties. The best way to implement device twins within cloud solutions applications is through the [Azure IoT SDKs](https://github.com/Azure/azure-iot-sdks.) Device twins are best suited for configuration because they:
5454

55-
1. Support bi-directional communication.
56-
2. Allow for both connected and disconnected device states.
57-
3. Follow the principle of eventual consistency.
58-
4. Are fully queriable in the cloud.
55+
* Support bi-directional communication.
56+
* Allow for both connected and disconnected device states.
57+
* Follow the principle of eventual consistency.
58+
* Are fully queriable in the cloud.
5959

6060
* **Organize devices using device twin tags:** The solution should allow the operator to define quality rings or other sets of devices based on various deployment strategies such as canary. Device organization can be implemented within your solution using device twin tags and [queries](iot-hub-devguide-query-language.md). Device organization is necessary to allow for configuration roll outs safely and accurately.
6161

@@ -79,7 +79,7 @@ The following are best practices for IoT solution operators who using an IoT sol
7979

8080
## Next steps
8181

82-
* Learn about implementing device twins in [Understand and use device twins in IoT Hub](iot-hub-devguide-device-twins.md)
82+
* Learn about implementing device twins in [Understand and use device twins in IoT Hub](iot-hub-devguide-device-twins.md).
8383

8484
* Walk through the steps to create, update, or delete an automatic device configuration in [Configure and monitor IoT devices at scale](iot-hub-auto-device-config.md).
8585

articles/iot-hub/iot-hub-configure-file-upload-cli.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Configure file upload to IoT Hub using Azure CLI | Microsoft Docs
3-
description: How to configure fileuploads to Azure IoT Hub using the cross-platform Azure CLI.
3+
description: How to configure file uploads to Azure IoT Hub using the cross-platform Azure CLI.
44
author: dominicbetts
55
ms.service: iot-hub
66
services: iot-hub
@@ -19,7 +19,7 @@ To complete this tutorial, you need the following:
1919

2020
* An active Azure account. If you don't have an account, you can create a [free account](https://azure.microsoft.com/pricing/free-trial/) in just a couple of minutes.
2121

22-
* [Azure CLI](https://docs.microsoft.com/en-us/cli/azure/install-azure-cli?view=azure-cli-latest).
22+
* [Azure CLI](https://docs.microsoft.com/cli/azure/install-azure-cli?view=azure-cli-latest).
2323

2424
* An Azure IoT hub. If you don't have an IoT hub, you can use the [`az iot hub create` command](https://docs.microsoft.com/cli/azure/iot/hub#az-iot-hub-create) to create one or [Create an IoT hub using the portal](iot-hub-create-through-portal.md).
2525

@@ -29,7 +29,7 @@ To complete this tutorial, you need the following:
2929

3030
Sign in to your Azure account and select your subscription.
3131

32-
1. At the command prompt, run the [login command](https://docs.microsoft.com/en-us/cli/azure/get-started-with-azure-cli?view=azure-cli-latest):
32+
1. At the command prompt, run the [login command](https://docs.microsoft.com/cli/azure/get-started-with-azure-cli?view=azure-cli-latest):
3333

3434
```azurecli
3535
az login

0 commit comments

Comments
 (0)