From 82b79aec466411f2a45b1245b6e0bc541a84eb19 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dawid=20Ka=C5=82=C4=99dkowski?= <6959016+gogonzo@users.noreply.github.com> Date: Tue, 19 Mar 2024 05:35:05 +0100 Subject: [PATCH] set to release (#264) Fixes #256 --- DESCRIPTION | 4 ++-- NEWS.md | 2 +- R/utils.R | 2 +- man/split_text_block.Rd | 4 ++-- 4 files changed, 6 insertions(+), 6 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index 5685c5c8..b54422bd 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Package: teal.reporter Title: Reporting Tools for 'shiny' Modules -Version: 0.3.0.9005 -Date: 2024-02-28 +Version: 0.3.1 +Date: 2024-03-15 Authors@R: c( person("Dawid", "Kaledkowski", , "dawid.kaledkowski@roche.com", role = c("aut", "cre"), comment = c(ORCID = "0000-0001-9533-457X")), diff --git a/NEWS.md b/NEWS.md index 7b8cc1d3..aac96420 100644 --- a/NEWS.md +++ b/NEWS.md @@ -1,4 +1,4 @@ -# teal.reporter 0.3.0.9005 +# teal.reporter 0.3.1 ### Enhancements diff --git a/R/utils.R b/R/utils.R index e187155e..71c021a0 100644 --- a/R/utils.R +++ b/R/utils.R @@ -255,7 +255,7 @@ padding_lst <- function(ft, indents) { #' A single character string containing a text block of multiple lines (separated by `\n`) #' is split into multiple strings with n or less lines each. #' -#' @param block_text (`character`) string containing the input block of text +#' @param x (`character`) string containing the input block of text #' @param n (`integer`) number of lines per block #' #' @return diff --git a/man/split_text_block.Rd b/man/split_text_block.Rd index 953f9a6e..25916814 100644 --- a/man/split_text_block.Rd +++ b/man/split_text_block.Rd @@ -7,9 +7,9 @@ split_text_block(x, n) } \arguments{ -\item{n}{(\code{integer}) number of lines per block} +\item{x}{(\code{character}) string containing the input block of text} -\item{block_text}{(\code{character}) string containing the input block of text} +\item{n}{(\code{integer}) number of lines per block} } \value{ List of character strings with up to \code{n} lines in each element.