From ca449df24cb4d6f05a3b31e9617733552908f074 Mon Sep 17 00:00:00 2001 From: Zachary Susswein Date: Mon, 16 Dec 2024 18:31:36 -0500 Subject: [PATCH] One more cleanup from the big rebase --- R/azure.R | 8 ++++---- man/download_file_from_container.Rd | 6 +++--- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/R/azure.R b/R/azure.R index 454e160..9537468 100644 --- a/R/azure.R +++ b/R/azure.R @@ -30,10 +30,10 @@ download_if_specified <- function( #' Download specified blobs from Blob Storage and save them in a local dir #' -#' @param blob_names A vector of blobs to donwload from `container_name` -#' @param local_dest The path to the local directory to save the files in -#' @param container_name The Azure Blob Storage container with `blob_names` -#' +#' @param blob_storage_path A character of a blob in `storage_container` +#' @param local_file_path The local path to save the blob +#' @param storage_container The blob storage container with `blob_storage_path` +# #' @return Invisibly, `local_file_path` #' @family azure #' @export diff --git a/man/download_file_from_container.Rd b/man/download_file_from_container.Rd index dcfcbe7..7529ef3 100644 --- a/man/download_file_from_container.Rd +++ b/man/download_file_from_container.Rd @@ -11,11 +11,11 @@ download_file_from_container( ) } \arguments{ -\item{blob_names}{A vector of blobs to donwload from \code{container_name}} +\item{blob_storage_path}{A character of a blob in \code{storage_container}} -\item{local_dest}{The path to the local directory to save the files in} +\item{local_file_path}{The local path to save the blob} -\item{container_name}{The Azure Blob Storage container with \code{blob_names}} +\item{storage_container}{The blob storage container with \code{blob_storage_path}} } \value{ Invisibly, \code{local_file_path}