Skip to content

Commit

Permalink
Update parens
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelmcd18 committed Jun 2, 2023
1 parent 02e22d3 commit 8c1af60
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions NEWS.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,10 @@

- `saerch_df` added to the package to search for all occurences of a value in a data.frame. (#20)

## Bug fixes

- Fixed incorrect `glue` function using `parens()`. (#21)

# mrgmisc 0.1.2

## Bug fixes
Expand Down
2 changes: 1 addition & 1 deletion R/parens.R
Original file line number Diff line number Diff line change
Expand Up @@ -15,4 +15,4 @@
#' parens('x')
#'
#' @export
parens <- function(x,...)metrumrg_glue('(',x,')')
parens <- function(x,...)paste0('(',x,')')

0 comments on commit 8c1af60

Please sign in to comment.