Skip to content

Commit

Permalink
Fixes Open-Systems-Pharmacology#368 Add identity in Scaling enum (Ope…
Browse files Browse the repository at this point in the history
…n-Systems-Pharmacology#371)

Also fix a typo in enum Shapes
  • Loading branch information
pchelle authored and Yuri05 committed Jan 27, 2023
1 parent d3a744e commit fcac495
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 4 additions & 2 deletions R/utilities-enums.R
Original file line number Diff line number Diff line change
Expand Up @@ -248,7 +248,7 @@ Shapes <- list(
"musicKey" = "\u266a",
"hollowFlag" = "\u263a",
"arrowLeft" = "\u2190",
"arrowRight" = "\u2193",
"arrowRight" = "\u2192",
"arrowUp" = "\u2191",
"arrowDown" = "\u2193",
# No shape displayed
Expand All @@ -268,7 +268,8 @@ Shapes <- list(
#' @family enum helpers
#'
#' @examples
#' # Continuous linear scale
#' # Continuous linear/identity scale
#' Scaling$identity
#' Scaling$lin
#'
#' # Continuous log10 scale
Expand All @@ -294,6 +295,7 @@ Shapes <- list(
#'
#' @export
Scaling <- enum(c(
"identity",
"lin",
"log",
"ln",
Expand Down
5 changes: 3 additions & 2 deletions man/Scaling.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fcac495

Please sign in to comment.