#' @param pause_base,pause_cap This method uses exponential back-off with
#' full jitter - this means that each request will randomly wait between 0
#' and `pause_base * 2 ^ attempt` seconds, up to a maximum of
#' `pause_cap` seconds.
When it should say :
#' @param pause_base,pause_cap This method uses exponential back-off with
#' full jitter - this means that each request will randomly wait between 1
#' and `pause_base * 2 ^ attempt` seconds, up to a maximum of
#' `pause_cap` seconds.
In the file retry.R it says:
When it should say :
As per the backoff_full_jitter function definition where
pause_min = 1
: