Skip to content

Commit 496ddb2

Browse files
authored
Fixing a broken (relative) link and small typos
1 parent 0090f99 commit 496ddb2

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ You have 2 options to provide the right Azure IoT TLS certificate:
3434
- Pass it in the constructor
3535
- Store it into the device
3636

37-
The [AzureCertificate](AzureCertificate) contains, for your convenience, the root certificated used to connect to Azure IoT. The current one, Baltimore Root CA is the one to use up to June 2022. Starting in June 2022, the Digicert Global Root 2 is the one to use. For more information, please read the following [blog](https://techcommunity.microsoft.com/t5/internet-of-things/azure-iot-tls-critical-changes-are-almost-here-and-why-you/ba-p/2393169).
37+
The [AzureCertificates](AzureCertificates) contains, for your convenience, the root certificated used to connect to Azure IoT. The current one, Baltimore Root CA is the one to use up to June 2022. Starting in June 2022, the Digicert Global Root 2 is the one to use. For more information, please read the following [blog](https://techcommunity.microsoft.com/t5/internet-of-things/azure-iot-tls-critical-changes-are-almost-here-and-why-you/ba-p/2393169).
3838

3939
#### Thru the constructor
4040

@@ -85,7 +85,7 @@ Navigate to the `General` tab:
8585

8686
![device network certificate](device-network-certificate.jpg)
8787

88-
Brose to choose your certificate, it can be in a binary (crt, der) or string form (pem, txt) and select ok. The certificate to connect will be selected automatically during the connection.
88+
Browse to choose your certificate, it can be in a binary (crt, der) or string form (pem, txt) and select ok. The certificate to connect will be selected automatically during the connection.
8989

9090
### Creating a DeviceClient
9191

@@ -129,7 +129,7 @@ reported.Add("sdk", 0.2);
129129
azureIoT.UpdateReportedProperties(reported);
130130
```
131131

132-
You have as well the option to wait for th twin update confirmation, in this case use a `CancellationToken` than can be cancelled. Otherwise the check will be ignore.
132+
You have as well the option to wait for the twin update confirmation, in this case use a `CancellationToken` that can be cancelled. Otherwise the check will be ignored.
133133

134134
Note: the function will return false if the twin reception confirmation is not checked or if it did not arrive on time.
135135

@@ -161,7 +161,7 @@ azureIoT.SendMessage($"{{\"Temperature\":42,\"Pressure\":1024}}");
161161

162162
### Cloud to device messages
163163

164-
You can register an event to received the Cloud to device messages:
164+
You can register an event to receive Cloud to device messages:
165165

166166
```csharp
167167
azureIoT.CloudToDeviceMessage += CloudToDeviceMessageEvent;
@@ -195,7 +195,7 @@ Note: the `sender` is a `DeviceClient` class, you can then send a message back,
195195

196196
### Method callback
197197

198-
Method callback is supported as well. You can register and unregister your methods. Here are few examples:
198+
Method callback is supported as well. You can register and unregister your methods. Here are a few examples:
199199

200200
```csharp
201201
azureIoT.AddMethodCallback(MethodCallbackTest);
@@ -299,7 +299,7 @@ For symmetric key provisioning you only need the following elements:
299299
- The ID Scope
300300
- The device name
301301
- The device certificate
302-
- Make sure that your IoT Hub is as well aware of the root/intermediate certificate you are using otherwise you won't be able to connect to your IoT Hub once your device provisioned
302+
- Make sure that your IoT Hub is as well aware of the root/intermediate certificate you are using otherwise you won't be able to connect to your IoT Hub once your device is provisioned
303303

304304
The code is then straight forward:
305305

0 commit comments

Comments
 (0)