From d0d8c00470168360361464e2c40e50196567dda8 Mon Sep 17 00:00:00 2001 From: Steve Martin Date: Wed, 19 Nov 2025 21:20:12 -0500 Subject: [PATCH] docs(iterate-responses): Fixed a few small typos --- R/iterate-responses.R | 6 +++--- man/resps_successes.Rd | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/R/iterate-responses.R b/R/iterate-responses.R index e8a27236..c6fcd602 100644 --- a/R/iterate-responses.R +++ b/R/iterate-responses.R @@ -1,12 +1,12 @@ #' Tools for working with lists of responses #' #' @description -#' These function provide a basic toolkit for operating with lists of +#' These functions provide a basic toolkit for operating with lists of #' responses and possibly errors, as returned by [req_perform_parallel()], #' [req_perform_sequential()] and [req_perform_iterative()]. #' -#' * `resps_successes()` returns a list successful responses. -#' * `resps_failures()` returns a list failed responses (i.e. errors). +#' * `resps_successes()` returns a list of successful responses. +#' * `resps_failures()` returns a list of failed responses (i.e. errors). #' * `resps_requests()` returns the list of requests that corresponds to #' each request. #' * `resps_data()` returns all the data in a single vector or data frame. diff --git a/man/resps_successes.Rd b/man/resps_successes.Rd index aca45396..d64c4473 100644 --- a/man/resps_successes.Rd +++ b/man/resps_successes.Rd @@ -26,12 +26,12 @@ output in \code{list()} to avoid combining all the bodies into a single raw vector, e.g. \verb{resps |> resps_data(\\(resp) list(resp_body_raw(resp)))}.} } \description{ -These function provide a basic toolkit for operating with lists of +These functions provide a basic toolkit for operating with lists of responses and possibly errors, as returned by \code{\link[=req_perform_parallel]{req_perform_parallel()}}, \code{\link[=req_perform_sequential]{req_perform_sequential()}} and \code{\link[=req_perform_iterative]{req_perform_iterative()}}. \itemize{ -\item \code{resps_successes()} returns a list successful responses. -\item \code{resps_failures()} returns a list failed responses (i.e. errors). +\item \code{resps_successes()} returns a list of successful responses. +\item \code{resps_failures()} returns a list of failed responses (i.e. errors). \item \code{resps_requests()} returns the list of requests that corresponds to each request. \item \code{resps_data()} returns all the data in a single vector or data frame.