Skip to content

Commit 7f99f19

Browse files
committed
redocument
1 parent 1308282 commit 7f99f19

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

man/ggplotly.Rd

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
\alias{ggplotly}
55
\title{Create plotly graphs using ggplot2 syntax}
66
\usage{
7-
ggplotly(p = last_plot())
7+
ggplotly(p = ggplot2::last_plot())
88
}
99
\arguments{
1010
\item{p}{a ggplot object.}

tests/testthat/test-plotly-knitr.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ ggplotly(p)
99
"
1010
test_that("plotly embeds inside knitr", {
1111
html <- knitr::knit2html(text = txt)
12-
expect_true(grepl("<iframe", html))
12+
expect_true(grepl("iframe", html))
1313
})
1414

1515
# If you want to interactively see the result

0 commit comments

Comments
 (0)