Skip to content
This repository was archived by the owner on Oct 12, 2023. It is now read-only.

Commit ce263e7

Browse files
authored
Fix Azure foreach options documentation (#288)
1 parent ad7acf1 commit ce263e7

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

docs/52-azure-foreach-options.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@
1818

1919
### Bypassing merge task
2020

21-
Skipping the merge task is useful when the tasks results don't need to be merged into a list. To bypass the merge task, you can pass the *enableMerge* flag to the foreach object:
21+
Skipping the merge task is useful when the tasks results don't need to be merged into a list. To bypass the merge task, you can pass the *enableCloudCombine* flag to the foreach object:
2222

2323
```R
2424
# Enable merge task
25-
foreach(i = 1:3, .options.azure = list(enableMerge = TRUE))
25+
foreach(i = 1:3, .options.azure = list(enableCloudCombine = TRUE))
2626

2727
# Disable merge task
28-
foreach(i = 1:3, .options.azure = list(enableMerge = FALSE))
28+
foreach(i = 1:3, .options.azure = list(enableCloudCombine = FALSE))
2929
```
3030
Note: User defined functions for the merge task is on our list of features that we are planning on doing.
3131

0 commit comments

Comments
 (0)