Skip to content

Commit c6d01b1

Browse files
committed
Edits
1 parent e3f7ad3 commit c6d01b1

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

articles/iot-hub/how-to-file-upload.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ In some scenarios, you can't easily map the data your devices send into the rela
2828

2929
These files are typically batch processed in the cloud, using tools such as [Azure Data Factory](../data-factory/introduction.md) or the [Hadoop](../hdinsight/index.yml) stack. When you need to upload files from a device, you can still use the security and reliability of IoT Hub. This article shows you how.
3030

31-
This article is meant to complement a runnable SDK samples that are referenced from within this article.
31+
This article is meant to complement runnable SDK samples that are referenced from within this article.
3232

3333
For more information, see:
3434

includes/iot-hub-howto-file-upload-dotnet.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ deviceClient = DeviceClient.CreateFromConnectionString(connectionString);
4242

4343
### Get a SAS URI from IoT hub
4444

45-
Call [GetFileUploadSasUriAsync](/dotnet/api/microsoft.azure.devices.client.deviceclient.getfileuploadsasuriasync) to get a file upload details. The SAS URI is used in the next step to upload a file from a device to Blob Storage.
45+
Call [GetFileUploadSasUriAsync](/dotnet/api/microsoft.azure.devices.client.deviceclient.getfileuploadsasuriasync) to get file upload details. The SAS URI is used in the next step to upload a file from a device to Blob Storage.
4646

4747
```csharp
4848
const string filePath = "TestPayload.txt";

includes/iot-hub-howto-file-upload-node.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -161,10 +161,10 @@ serviceClient.open(function (err) {
161161
162162
To check for file upload notifications:
163163
164-
* Call [getFileNotificationReceiver](/javascript/api/azure-iothub/client?#azure-iothub-client-getfilenotificationreceiver). Supply the name of a file upload callback method that will be called when notification messages are received.
164+
* Call [getFileNotificationReceiver](/javascript/api/azure-iothub/client?#azure-iothub-client-getfilenotificationreceiver). Supply the name of a file upload callback method that are called when notification messages are received.
165165
* Process file upload notifications in the callback method.
166166
167-
This example sets up a `receiveFileUploadNotification` notification callback receiver. The receiver interprets the file upload status information and prints a status messsage to the console.
167+
This example sets up a `receiveFileUploadNotification` notification callback receiver. The receiver interprets the file upload status information and prints a status message to the console.
168168
169169
```javascript
170170
//Set up the receiveFileUploadNotification notification message callback receiver

includes/iot-hub-howto-file-upload-python.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ device_client.notify_blob_upload_status(storage_info["correlationId"], True, 200
121121

122122
### Shut down the device client
123123

124-
Shut down the client. Once this method is called, any attempts at further client calls result in a [ClientError](/python/api/azure-iot-device/azure.iot.device.exceptions.clienterror) being raised.
124+
Shut down the client. Once this method is called, any attempt at further client calls result in a [ClientError](/python/api/azure-iot-device/azure.iot.device.exceptions.clienterror) being raised.
125125

126126
```python
127127
device_client.shutdown()

0 commit comments

Comments
 (0)