Fix Azure foreach options documentation (#288)

This commit is contained in:
Brian Hoang 2018-07-13 16:24:32 -07:00 коммит произвёл GitHub
Родитель ad7acf1c33
Коммит ce263e78bd
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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.