Skip to content

Commit 2d69e55

Browse files
authored
Merge pull request #125101 from ArieHein/Spelling-Wave-27
Spelling Fixes
2 parents df6f345 + 262beb6 commit 2d69e55

17 files changed

+22
-22
lines changed

articles/iot-central/core/concepts-device-implementation.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ To learn more about the CLI command, see [az iot central device manual-failover]
173173
You can now check that telemetry from the device still reaches your IoT Central application.
174174

175175
> [!TIP]
176-
> To see sample device code that handles failovers in various programing languages, see [IoT Central high availability clients](/samples/azure-samples/iot-central-high-availability-clients/iotc-high-availability-clients/).
176+
> To see sample device code that handles failovers in various programming languages, see [IoT Central high availability clients](/samples/azure-samples/iot-central-high-availability-clients/iotc-high-availability-clients/).
177177
178178
## Next steps
179179

articles/iot-central/core/howto-integrate-with-devops.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ You need the following prerequisites to complete the steps in this guide:
5050

5151
## Download the sample code
5252

53-
To get started, fork the IoT Central CI/CD GitHub repository and then clne your fork to your local machine:o
53+
To get started, fork the IoT Central CI/CD GitHub repository and then clone your fork to your local machine:
5454

5555
1. To fork the GitHub repository, open the [IoT Central CI/CD GitHub repository](https://github.com/Azure/iot-central-CICD-sample) and select **Fork**.
5656

articles/iot-central/core/howto-manage-deployment-manifests-with-rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -286,7 +286,7 @@ The response to this request looks like the following example:
286286
PATCH https://{your app subdomain}/api/deploymentManifests/{deploymentManifestId}?api-version=2022-10-31-preview
287287
```
288288

289-
The following sample request body updates the `SendInterval` desired property setting for the `SimuatedTemperatureSetting` module:
289+
The following sample request body updates the `SendInterval` desired property setting for the `SimulatedTemperatureSetting` module:
290290

291291
```json
292292
{

articles/iot-central/core/howto-manage-organizations-with-rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
---
22
title: Manage organizations with the REST API in Azure IoT Central
3-
description: How to use the IoT Central REST API to manage organizations in an application. Oganizations let you manage access to application resources.
3+
description: How to use the IoT Central REST API to manage organizations in an application. Organizations let you manage access to application resources.
44
author: dominicbetts
55
ms.author: dobett
66
ms.date: 10/22/2024

articles/iot-central/core/howto-transform-data.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -417,7 +417,7 @@ To verify the scenario is running, navigate to your **IoT Edge gateway device**
417417
The telemetry data in the **Measurements** column looks like:
418418
419419
```json
420-
{"temperature":85.21208,"pressure":59.97321,"humidity":77.718124,"scale":"farenheit"}
420+
{"temperature":85.21208,"pressure":59.97321,"humidity":77.718124,"scale":"fahrenheit"}
421421
```
422422
423423
The temperature is sent in Fahrenheit. Because the IoT Edge device is transforming the data from the downstream device, the telemetry is associated with the gateway device in IoT Central. To visualize the transformed telemetry, create a view in the **IoT Edge gateway device** template and republish it.
@@ -467,7 +467,7 @@ The device bridge then sends the transformed data to IoT Central in the followin
467467
"temp": <temperature in degrees F>,
468468
"humidity": <humidity>,
469469
"lat": <latitude>,
470-
"lon": <logitude>,
470+
"lon": <longitude>,
471471
"weather": {
472472
"weather_temp": <temperature at lat/lon>,
473473
"weather_humidity": <humidity at lat/lon>,

articles/iot-dps/concepts-device-oem-security-practices.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Three widely used authentication types are X.509 certificates, Trusted Platform
2626

2727
### X.509 certificate
2828
X.509 certificates are a type of digital identity you can use for authentication. The X.509 certificate standard is documented in [IETF RFC 5280](https://tools.ietf.org/html/rfc5280). In Azure IoT, there are two ways to authenticate certificates:
29-
- Thumbprint. A thumbprint algorithm is run on a certificate to generate a hexadecimal string. The generated string is a unique identifer for the certificate.
29+
- Thumbprint. A thumbprint algorithm is run on a certificate to generate a hexadecimal string. The generated string is a unique identifier for the certificate.
3030
- CA authentication based on a full chain. A certificate chain is a hierarchical list of all certificates needed to authenticate an end-entity (EE) certificate. To authenticate an EE certificate, it's necessary to authenticate each certificate in the chain including a trusted root CA.
3131

3232
Pros for X.509:

articles/iot-edge/how-to-monitor-module-twins.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,7 +166,7 @@ The information about the connectivity of your custom modules is maintained in t
166166

167167
You can use your preferred programming language with the [Azure IoT Hub Device SDKs](../iot-hub/iot-hub-devguide-sdks.md#azure-iot-hub-device-sdks) to update reported property values in the module twin, based on your module's application code. The following procedure uses the Azure SDK for .NET to do this, using code from the [SimulatedTemperatureSensor](https://github.com/Azure/iotedge/blob/main/edge-modules/SimulatedTemperatureSensor/src/Program.cs) module:
168168

169-
1. Create an instance of the [ModuleClient](/dotnet/api/microsoft.azure.devices.client.moduleclient) with the [CreateFromEnvironmentAysnc](/dotnet/api/microsoft.azure.devices.client.moduleclient.createfromenvironmentasync) method.
169+
1. Create an instance of the [ModuleClient](/dotnet/api/microsoft.azure.devices.client.moduleclient) with the [CreateFromEnvironmentAsync](/dotnet/api/microsoft.azure.devices.client.moduleclient.createfromenvironmentasync) method.
170170

171171
1. Get a collection of the module twin's properties with the [GetTwinAsync](/dotnet/api/microsoft.azure.devices.client.moduleclient.gettwinasync) method.
172172

articles/iot-edge/how-to-provision-devices-at-scale-linux-tpm.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -145,7 +145,7 @@ After the installation is finished and you've signed back in to your VM, you're
145145
## Retrieve provisioning information for your TPM
146146

147147
> [!NOTE]
148-
> This article previously used the `tpm_device_provision` tool from the IoT C SDK to generate provisioning info. If you relied on that tool previously, then be aware the steps below generate a different registration ID for the same public endorsement key. If you need to recreate the registration ID as before then refer to how the C SDK's [tpm_device_provision tool](https://github.com/Azure/azure-iot-sdk-c/tree/main/provisioning_client/tools/tpm_device_provision) generates it. Be sure the registration ID for the individual enrollment in DPS matches the regisration ID the IoT Edge device is configured to use.
148+
> This article previously used the `tpm_device_provision` tool from the IoT C SDK to generate provisioning info. If you relied on that tool previously, then be aware the steps below generate a different registration ID for the same public endorsement key. If you need to recreate the registration ID as before then refer to how the C SDK's [tpm_device_provision tool](https://github.com/Azure/azure-iot-sdk-c/tree/main/provisioning_client/tools/tpm_device_provision) generates it. Be sure the registration ID for the individual enrollment in DPS matches the registration ID the IoT Edge device is configured to use.
149149
150150
In this section, you use the TPM2 software tools to retrieve the endorsement key for your TPM and then generate a unique registration ID. This section corresponds with [Step 3: Device has firmware and software installed](../iot-dps/concepts-device-oem-security-practices.md#step-3-device-has-firmware-and-software-installed) in the process for [integrating a TPM into the manufacturing process](../iot-dps/concepts-device-oem-security-practices.md#integrating-a-tpm-into-the-manufacturing-process).
151151

articles/iot-edge/iot-edge-for-linux-on-windows-networking.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ Depending on the type of virtual switch used, EFLOW VM supports different IP all
6666
```
6767
6868
>[!WARNING]
69-
> When using static IP, the **three parameters** (`ip4Address`, `ip4GatewayAddres`, `ip4PrefixLength`) must be used. Also, if the IP address is invalid, being used by another device on thee netowrk, or the gateway address is incorrect, EFLOW installation could fail as the EFLOW VM can't get an IP address.
69+
> When using static IP, the **three parameters** (`ip4Address`, `ip4GatewayAddress`, `ip4PrefixLength`) must be used. Also, if the IP address is invalid, being used by another device on thee network, or the gateway address is incorrect, EFLOW installation could fail as the EFLOW VM can't get an IP address.
7070
7171
- **DHCP** - Contrary to static IP, when using DHCP, the EFLOW virtual machine is assigned with a dynamic IP address; which is an address that may change. The network must have a DHCP server configured and operating to assign dynamic IP addresses. The DHCP server assigns a vacant IP address to the EFLOW VM and others connected to the network. Therefore, when deploying EFLOW using DHCP, no IP address, gateway address, or prefix length is needed, as the DHCP server provides all the information.
7272

articles/iot-edge/nested-virtualization.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ To set up an Azure IoT Edge for Linux on Windows on a VMware ESXi Windows virtua
3939
1. Install Hyper-V hypervisor. If you're using Windows client, make sure you [Install Hyper-V on Windows 10](/virtualization/hyper-v-on-windows/quick-start/enable-hyper-v). If you're using Windows Server, make sure you [install the Hyper-V role](/windows-server/virtualization/hyper-v/get-started/install-the-hyper-v-role-on-windows-server).
4040

4141
> [!NOTE]
42-
> For VMware Windows virtual machines, if you plan to use an **external virtual switch** for the EFLOW virtual machine networking, make sure you enable _Promiscious mode_. For more information, see [Configuring promiscuous mode on a virtual switch or portgroup](https://kb.vmware.com/s/article/1004099). Failing to do so will result in EFLOW installation errors.
42+
> For VMware Windows virtual machines, if you plan to use an **external virtual switch** for the EFLOW virtual machine networking, make sure you enable _Promiscuous mode_. For more information, see [Configuring promiscuous mode on a virtual switch or portgroup](https://kb.vmware.com/s/article/1004099). Failing to do so will result in EFLOW installation errors.
4343
4444
## Deployment on Azure VMs
4545

0 commit comments

Comments
 (0)