Skip to content

Commit 5cd274d

Browse files
Use @param \ldots everywhere
1 parent ba1c013 commit 5cd274d

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

45 files changed

+62
-63
lines changed

R/backend_api-ClusterFutureBackend-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
#' @param persistent If FALSE, the evaluation environment is cleared
4343
#' from objects prior to the evaluation of the future.
4444
#'
45-
#' @param \dots Additional named elements passed to [Future()].
45+
#' @param \ldots Additional named elements passed to [Future()].
4646
#'
4747
#' @return
4848
#' A ClusterFuture.

R/backend_api-Future-class.R

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@
8080
#'
8181
#' @param label An optional character string label attached to the future.
8282
#'
83-
#' @param \dots Additional named elements of the future.
83+
#' @param \ldots Additional named elements of the future.
8484
#'
8585
#' @return
8686
#' `Future()` returns an object of class `Future`.
@@ -383,7 +383,7 @@ assertOwner <- local({
383383
#' Run a future
384384
#'
385385
#' @param future A \link{Future}.
386-
#' @param \dots Not used.
386+
#' @param \ldots Not used.
387387
#'
388388
#' @return The [Future] object.
389389
#'
@@ -583,7 +583,7 @@ result <- function(future, ...) {
583583
#' Get the results of a resolved future
584584
#'
585585
#' @param future A \link{Future}.
586-
#' @param \dots Not used.
586+
#' @param \ldots Not used.
587587
#'
588588
#' @return The [FutureResult] object.
589589
#'
@@ -882,7 +882,7 @@ getFutureData <- function(future, ..., debug = isTRUE(getOption("future.debug"))
882882
#' Inject code for the next type of future to use for nested futures
883883
#'
884884
#' @param future Current future.
885-
#' @param \dots Not used.
885+
#' @param \ldots Not used.
886886
#'
887887
#' @return A future expression with code injected to set what
888888
#' type of future to use for nested futures, iff any.

R/backend_api-MulticoreFutureBackend-class.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,8 @@
2424
#' If a function, it is called without arguments _when the future
2525
#' is created_ and its value is used to configure the workers.
2626
#'
27+
#' @param \ldots Additional named elements to [Future()].
28+
#'
2729
#' @return
2830
#' A [Future].
2931
#' If `workers == 1`, then all processing using done in the

R/backend_api-MultiprocessFutureBackend-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ nbrOfFreeWorkers.MultiprocessFutureBackend <- function(evaluator, background = F
2525
#'
2626
#' @inheritParams Future-class
2727
#'
28-
#' @param \dots Additional named elements passed to [Future()].
28+
#' @param \ldots Additional named elements passed to [Future()].
2929
#'
3030
#' @return
3131
#' `MultiprocessFuture()` returns an object of class `MultiprocessFuture`.

R/backend_api-MultisessionFutureBackend-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323
#' @inheritParams Future-class
2424
#' @inheritParams future
2525
#'
26-
#' @param \dots Additional arguments passed to [Future()].
26+
#' @param \ldots Additional arguments passed to [Future()].
2727
#'
2828
#' @param rscript_libs A character vector of \R package library folders that
2929
#' the workers should use. The default is `.libPaths()` so that multisession

R/backend_api-SequentialFutureBackend-class.R

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,8 @@
1717
#' @inheritParams future
1818
#' @inheritParams Future-class
1919
#'
20+
#' @param \ldots Additional named elements to [Future()].
21+
#'
2022
#' @return
2123
#' A [Future].
2224
#'

R/backend_api-UniprocessFuture-class.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
#'
33
#' @inheritParams Future-class
44
#'
5-
#' @param \dots Additional named elements passed to [Future()].
5+
#' @param \ldots Additional named elements passed to [Future()].
66
#'
77
#' @return
88
#' `UniprocessFuture()` returns an object of class `UniprocessFuture`.

R/core_api-future.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@
1616
#'
1717
#' @param expr,value An \R \link[base]{expression}.
1818
#'
19-
#' @param \dots Additional arguments passed to [Future()].
19+
#' @param \ldots Additional arguments passed to [Future()].
2020
#'
2121
#' @return
2222
#' `f <- future(expr)` creates a [Future] `f` that evaluates expression `expr`, the value of the future is retrieved using `v <- value(f)`.

R/core_api-resolved.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
#' @param x A \link{Future}, a list, or an environment (which also
44
#' includes \link[listenv:listenv]{list environment}).
55
#'
6-
#' @param \dots Not used.
6+
#' @param \ldots Not used.
77
#'
88
#' @return A logical of the same length and dimensions as `x`.
99
#' Each element is TRUE unless the corresponding element is a

R/core_api-value.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
#' @param signal If TRUE, \link[base]{conditions} captured while resolving
1414
#' futures are relayed, otherwise not.
1515
#'
16-
#' @param \dots All arguments used by the S3 methods.
16+
#' @param \ldots All arguments used by the S3 methods.
1717
#'
1818
#' @return
1919
#' `value()` of a Future object returns the value of the future, which can

0 commit comments

Comments
 (0)