Skip to content

Commit be64e87

Browse files
authored
Fix typo describing the write script as a read operation (#713)
1 parent d24f03a commit be64e87

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

docs/resources/samples/write-large-dataset.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
title: Write a large dataset
33
description: Learn how to split a large dataset into smaller write operations in Office Scripts.
4-
ms.date: 11/30/2023
4+
ms.date: 02/08/2024
55
ms.localizationpriority: medium
66
---
77

@@ -158,15 +158,15 @@ For this sample, you'll need to complete the following steps.
158158
1. Create and save both of the following scripts.
159159
1. Follow the steps under [Power Automate flow: Read and write data in a loop](#power-automate-flow-read-and-write-data-in-a-loop) to create the flow.
160160

161-
### Sample code: Read part of a workbook
161+
### Sample code: Read selected rows
162162

163163
```TypeScript
164164
function main(
165165
workbook: ExcelScript.Workbook,
166166
startRow: number,
167167
batchSize: number
168168
): string[][] {
169-
// This sample only reads the first worksheet in the workbook.
169+
// This script only reads the first worksheet in the workbook.
170170
const sheet = workbook.getWorksheets()[0];
171171

172172
// Get the boundaries of the range.
@@ -188,7 +188,7 @@ function main(
188188

189189
```
190190

191-
### Sample code: Read selected rows
191+
### Sample code: Write data at row location
192192

193193
```TypeScript
194194
function main(

0 commit comments

Comments
 (0)