We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bb2c405 commit 2663bb1Copy full SHA for 2663bb1
R/plot.R
@@ -167,7 +167,7 @@ is_ggplot <- function(x) inherits(x, "ggplot")
167
#' @rdname is_tests
168
#' @usage is.ggplot(x) # Deprecated
169
is.ggplot <- function(x) {
170
- deprecate_soft0("3.5.2", "is.ggplot", "is_ggplot")
+ deprecate_soft0("3.5.2", "is.ggplot()", "is_ggplot()")
171
is_ggplot(x)
172
}
173
R/theme.R
@@ -873,7 +873,7 @@ is_theme <- function(x) inherits(x, "theme")
873
874
#' @usage is.theme(x) # Deprecated
875
is.theme <- function(x) {
876
- deprecate_soft0("3.5.2", "is.theme", "is_theme")
+ deprecate_soft0("3.5.2", "is.theme()", "is_theme()")
877
is_theme(x)
878
879
0 commit comments