From 879364216d75f8ee72ffc65d6ee2fd230ec8b78c Mon Sep 17 00:00:00 2001 From: Jordan Mark Barbone Date: Sun, 28 Jun 2026 23:54:19 -0400 Subject: [PATCH 1/2] cleans up imports --- R/mark-package.R | 6 +++--- man/reexports.Rd | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/R/mark-package.R b/R/mark-package.R index a681d614..d456c358 100644 --- a/R/mark-package.R +++ b/R/mark-package.R @@ -1,12 +1,12 @@ #' @include not-available.R + #' mark #' #' Miscellaneous, Analytic R Kernels #' #' @importFrom fuj %||% %|||% %out% collapse list0 -#' @importFrom cnd cnd condition cnd_create_registry cnd_exports cnd_document -#' @importFrom cnd class_error duplicate_error input_error type_error value_error -#' @importFrom cnd deprecated_warning duplicate_warning input_warning +# nolint next: line_length_linter. +#' @importFrom cnd cnd condition cnd_create_registry cnd_exports cnd_document class_error duplicate_error input_error type_error value_error deprecated_warning duplicate_warning input_warning #' #' @docType package #' @name mark diff --git a/man/reexports.Rd b/man/reexports.Rd index 5baca0fb..62172bd0 100644 --- a/man/reexports.Rd +++ b/man/reexports.Rd @@ -36,7 +36,7 @@ These objects are imported from other packages. Follow the links below to see their documentation. \describe{ - \item{fuj}{\code{\link[fuj:\%:::\%]{\%:::\%}}, \code{\link[fuj:\%::\%]{\%::\%}}, \code{\link[fuj:\%||\%]{\%||\%}}, \code{\link[fuj:\%colons\%]{\%colons\%}}, \code{\link[fuj:\%len\%]{\%len\%}}, \code{\link[fuj:\%names\%]{\%names\%}}, \code{\link[fuj:\%out\%]{\%out\%}}, \code{\link[fuj:\%wi\%]{\%wi\%}}, \code{\link[fuj:\%wo\%]{\%wo\%}}, \code{\link[fuj:any_match]{any_match()}}, \code{\link[fuj:exattr]{exattr()}}, \code{\link[fuj:flip]{flip()}}, \code{\link[fuj:is_linux]{is_linux()}}, \code{\link[fuj:is_macos]{is_macos()}}, \code{\link[fuj:is_named]{is_named()}}, \code{\link[fuj:is_windows]{is_windows()}}, \code{\link[fuj:muffle]{muffle()}}, \code{\link[fuj:no_match]{no_match()}}, \code{\link[fuj:quick_df]{quick_df()}}, \code{\link[fuj:quick_dfl]{quick_dfl()}}, \code{\link[fuj:remove_names]{remove_names()}}, \code{\link[fuj:require_namespace]{require_namespace()}}, \code{\link[fuj:set_names]{set_names()}}, \code{\link[fuj:struct]{struct()}}, \code{\link[fuj:wuffle]{wuffle()}}} + \item{fuj}{\code{\link[fuj:\%::\%]{\%::\%}}, \code{\link[fuj:\%:::\%]{\%:::\%}}, \code{\link[fuj:\%colons\%]{\%colons\%}}, \code{\link[fuj:\%len\%]{\%len\%}}, \code{\link[fuj:\%names\%]{\%names\%}}, \code{\link[fuj:\%out\%]{\%out\%}}, \code{\link[fuj:\%wi\%]{\%wi\%}}, \code{\link[fuj:\%wo\%]{\%wo\%}}, \code{\link[fuj:\%||\%]{\%||\%}}, \code{\link[fuj:any_match]{any_match()}}, \code{\link[fuj:exattr]{exattr()}}, \code{\link[fuj:flip]{flip()}}, \code{\link[fuj:is_linux]{is_linux()}}, \code{\link[fuj:is_macos]{is_macos()}}, \code{\link[fuj:is_named]{is_named()}}, \code{\link[fuj:is_windows]{is_windows()}}, \code{\link[fuj:muffle]{muffle()}}, \code{\link[fuj:no_match]{no_match()}}, \code{\link[fuj:quick_df]{quick_df()}}, \code{\link[fuj:quick_dfl]{quick_dfl()}}, \code{\link[fuj:remove_names]{remove_names()}}, \code{\link[fuj:require_namespace]{require_namespace()}}, \code{\link[fuj:set_names]{set_names()}}, \code{\link[fuj:struct]{struct()}}, \code{\link[fuj:wuffle]{wuffle()}}} \item{magrittr}{\code{\link[magrittr:\%>\%]{\%>\%}}} }} From 75ed20970c0dae807b36c7c7ac40fe8c081f8e0c Mon Sep 17 00:00:00 2001 From: Jordan Mark Barbone Date: Sun, 28 Jun 2026 23:54:26 -0400 Subject: [PATCH 2/2] updates clipboard info --- R/clipboard.R | 4 +--- man/clipboard.Rd | 4 +--- 2 files changed, 2 insertions(+), 6 deletions(-) diff --git a/R/clipboard.R b/R/clipboard.R index c8408094..a762cc49 100644 --- a/R/clipboard.R +++ b/R/clipboard.R @@ -2,8 +2,7 @@ #' #' Wrappers for working with the clipboard #' -#' @details As these functions rely on [clipr::read_clip()] and -#' [utils::writeClipboard()] they are only available for Windows 10. For +#' @details As these functions rely on [clipr::read_clip()]. For #' copying and pasting floats, there may be some rounding that can occur. #' #' @param x An object to write to the clipboard @@ -18,7 +17,6 @@ #' #' @name clipboard #' @examples -#' # Will only run on windows #' foo <- function(x) { #' write_clipboard(x) #' y <- read_clipboard() diff --git a/man/clipboard.Rd b/man/clipboard.Rd index 605db20f..dbbf42e2 100644 --- a/man/clipboard.Rd +++ b/man/clipboard.Rd @@ -51,12 +51,10 @@ empty clipboard value returns \code{NA} rather than \code{""} Wrappers for working with the clipboard } \details{ -As these functions rely on \code{\link[clipr:read_clip]{clipr::read_clip()}} and -\code{\link[utils:writeClipboard]{utils::writeClipboard()}} they are only available for Windows 10. For +As these functions rely on \code{\link[clipr:read_clip]{clipr::read_clip()}}. For copying and pasting floats, there may be some rounding that can occur. } \examples{ -# Will only run on windows foo <- function(x) { write_clipboard(x) y <- read_clipboard()