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

Commit

Permalink
Fix Azure foreach options documentation (#288)
Browse files Browse the repository at this point in the history
  • Loading branch information
brnleehng authored Jul 13, 2018
1 parent ad7acf1 commit ce263e7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions docs/52-azure-foreach-options.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,14 +18,14 @@

### Bypassing merge task

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:
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:

```R
# Enable merge task
foreach(i = 1:3, .options.azure = list(enableMerge = TRUE))
foreach(i = 1:3, .options.azure = list(enableCloudCombine = TRUE))

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

0 comments on commit ce263e7

Please sign in to comment.