Skip to content

Commit 4cac46f

Browse files
committed
Acrolinx issues
1 parent 7eaf044 commit 4cac46f

File tree

4 files changed

+9
-9
lines changed

4 files changed

+9
-9
lines changed

articles/iot-central/core/howto-control-devices-with-rest-api.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@ The response to this request looks like the following example:
277277
}
278278
```
279279

280-
If the device is an IoT Edge device, use the following request to retrieve property values from a from a module. This example uses a device called `environmental-sensor-01` with a module called `SimulatedTemperatureSensor`:
280+
If the device is an IoT Edge device, use the following request to retrieve property values from a module. This example uses a device called `environmental-sensor-01` with a module called `SimulatedTemperatureSensor`:
281281

282282
```http
283283
GET https://{your app subdomain}.azureiotcentral.com/api/devices/environmental-sensor-01/modules/SimulatedTemperatureSensor/properties?api-version=2022-07-31

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@ The response to this request looks like the following example:
134134
PATCH https://{subdomain}.{baseDomain}/api/dataExport/destinations/{destinationId}?api-version=2022-06-30-preview
135135
```
136136

137-
You can use this to perform an incremental update to an export. The sample request body looks like the following example which updates the `displayName` to a destination:
137+
You can use this to perform an incremental update to an export. The sample request body looks like the following example that updates the `displayName` to a destination:
138138

139139
```json
140140
{
@@ -306,7 +306,7 @@ The response to this request looks like the following example:
306306
PATCH https://{subdomain}.{baseDomain}/dataExport/exports/{exportId}?api-version=2022-06-30-preview
307307
```
308308

309-
You can use this to perform an incremental update to an export. The sample request body looks like the following example which updates the `enrichments` to an export:
309+
You can use this to perform an incremental update to an export. The sample request body looks like the following example that updates the `enrichments` to an export:
310310

311311
```json
312312
{

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -456,7 +456,7 @@ PATCH https://{subdomain}.{baseDomain}/api/deviceTemplates/{deviceTemplateId}?ap
456456
>[!NOTE]
457457
>`{deviceTemplateId}` should be the same as the `@id` in the payload.
458458
459-
The sample request body looks like the following example which adds a the `LastMaintenanceDate` cloud property to the device template:
459+
The sample request body looks like the following example that adds a `LastMaintenanceDate` cloud property to the device template:
460460

461461
```json
462462
{
@@ -1264,7 +1264,7 @@ The response to this request looks like the following example:
12641264

12651265
You can also combine two or more filters.
12661266

1267-
The following example shows how to retrieve the top 2 device templates where the display name contains the string `thermostat`.
1267+
The following example shows how to retrieve the top two device templates where the display name contains the string `thermostat`.
12681268

12691269
```http
12701270
GET https://{subdomain}.{baseDomain}/api/deviceTemplates?api-version=2022-07-31&$filter=contains(displayName, 'thermostat')&$top=2

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

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@ PATCH https://{subdomain}.{baseDomain}/api/devices/{deviceId}?api-version=2022-0
128128
>[!NOTE]
129129
>`{deviceTemplateId}` should be the same as the `@id` in the payload.
130130
131-
The sample request body looks like the following example which updates the `displayName` to the device:
131+
The sample request body looks like the following example that updates the `displayName` to the device:
132132

133133
```json
134134
{
@@ -360,7 +360,7 @@ The response to this request looks like the following example:
360360

361361
You can also combine two or more filters.
362362

363-
The following example shows how to retrieve the top 2 device where the display name contains the string `thermostat`.
363+
The following example shows how to retrieve the top two devices where the display name contains the string `thermostat`.
364364

365365
```http
366366
GET https://{subdomain}.{baseDomain}/api/deviceTemplates?api-version=2022-07-31&$filter=contains(displayName, 'thermostat')&$top=2
@@ -469,7 +469,7 @@ The response to this request looks like the following example:
469469
PATCH https://{subdomain}.{baseDomain}/api/deviceGroups/{deviceGroupId}?api-version=2022-07-31
470470
```
471471

472-
The sample request body looks like the following example which updates the `displayName` of the device group:
472+
The sample request body looks like the following example that updates the `displayName` of the device group:
473473

474474
```json
475475
{
@@ -860,7 +860,7 @@ Use the following request to update an enrollment group.
860860
PATCH https://{your app subdomain}.azureiotcentral.com/api/enrollmentGroups/myx509eg?api-version=2022-07-31
861861
```
862862

863-
The following example shows a request body that updates the display name of a enrollment group:
863+
The following example shows a request body that updates the display name of an enrollment group:
864864

865865
```json
866866
{

0 commit comments

Comments
 (0)