This is an automated email from the ASF dual-hosted git repository.

thisisnic pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/arrow.git


The following commit(s) were added to refs/heads/main by this push:
     new 58c2c3716c GH-37456: [R] CRAN incoming checks show NOTE due to 
internal function which isn't documented (#37457)
58c2c3716c is described below

commit 58c2c3716c5cc308f17708ba98e41137dec0fc51
Author: Nic Crane <[email protected]>
AuthorDate: Thu Aug 31 16:49:39 2023 +0100

    GH-37456: [R] CRAN incoming checks show NOTE due to internal function which 
isn't documented (#37457)
    
    ### Rationale for this change
    
    Failed CRAN check due to updates to their checks on R-devel
    
    ### What changes are included in this PR?
    
    Add additional roxygen header
    
    ### Are these changes tested?
    
    No
    
    ### Are there any user-facing changes?
    
    No
    * Closes: #37456
    
    Authored-by: Nic Crane <[email protected]>
    Signed-off-by: Nic Crane <[email protected]>
---
 r/R/dplyr-funcs.R         | 2 ++
 r/man/enums.Rd            | 2 +-
 r/man/register_binding.Rd | 8 ++++++++
 3 files changed, 11 insertions(+), 1 deletion(-)

diff --git a/r/R/dplyr-funcs.R b/r/R/dplyr-funcs.R
index 2728a64539..956e31fe2b 100644
--- a/r/R/dplyr-funcs.R
+++ b/r/R/dplyr-funcs.R
@@ -123,6 +123,8 @@ unregister_binding <- function(fun_name, registry = 
nse_funcs,
   invisible(previous_fun)
 }
 
+#' @rdname register_binding
+#' @keywords internal
 register_binding_agg <- function(fun_name,
                                  agg_fun,
                                  registry = agg_funcs,
diff --git a/r/man/enums.Rd b/r/man/enums.Rd
index 853fa07028..dd0ca944b8 100644
--- a/r/man/enums.Rd
+++ b/r/man/enums.Rd
@@ -24,7 +24,7 @@ An object of class \code{TimeUnit::type} (inherits from 
\code{arrow-enum}) of le
 
 An object of class \code{DateUnit} (inherits from \code{arrow-enum}) of length 
2.
 
-An object of class \code{Type::type} (inherits from \code{arrow-enum}) of 
length 37.
+An object of class \code{Type::type} (inherits from \code{arrow-enum}) of 
length 39.
 
 An object of class \code{StatusCode} (inherits from \code{arrow-enum}) of 
length 13.
 
diff --git a/r/man/register_binding.Rd b/r/man/register_binding.Rd
index fd857f5c67..d10cd733bb 100644
--- a/r/man/register_binding.Rd
+++ b/r/man/register_binding.Rd
@@ -2,6 +2,7 @@
 % Please edit documentation in R/dplyr-funcs.R
 \name{register_binding}
 \alias{register_binding}
+\alias{register_binding_agg}
 \title{Register compute bindings}
 \usage{
 register_binding(
@@ -11,6 +12,13 @@ register_binding(
   update_cache = FALSE,
   notes = character(0)
 )
+
+register_binding_agg(
+  fun_name,
+  agg_fun,
+  registry = agg_funcs,
+  notes = character(0)
+)
 }
 \arguments{
 \item{fun_name}{A string containing a function name in the form 
\code{"function"} or

Reply via email to