Skip to content

Commit 860f935

Browse files
committed
fix: linting
1 parent 1fec4f1 commit 860f935

File tree

2 files changed

+13
-9
lines changed

2 files changed

+13
-9
lines changed

CRAN-SUBMISSION

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
Version: 4.3.0
2-
Date: 2022-08-09 23:53:33 UTC
3-
SHA: 0f23d26d63db1792f4867a5989db48db1fc45e3a
1+
Version: 4.6.0
2+
Date: 2022-08-12 00:38:58 UTC
3+
SHA: 1fec4f1a3a68b4b88da3b637ebaaf62b30d9b5da

R/lineup.R

Lines changed: 10 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -291,14 +291,16 @@ lineupRanking <- function(columns = c("_*", "*"),
291291
#' @examples # !formatR
292292
#' library(shiny)
293293
#' app <- shinyApp(
294-
#' ui = fluidPage(lineupOutput('lineup')),
294+
#' ui = fluidPage(lineupOutput("lineup")),
295295
#' server = function(input, output) {
296296
#' lineup <- lineupBuilder(iris) |> buildLineUp()
297-
#' output$lineup = renderLineup(lineup)
297+
#' output$lineup <- renderLineup(lineup)
298298
#' }
299299
#' )
300300
#'
301-
#' \donttest{if (interactive()) app}
301+
#' \donttest{
302+
#' if (interactive()) app
303+
#' }
302304
#' @export
303305
lineupOutput <- function(outputId,
304306
width = "100%",
@@ -333,14 +335,16 @@ renderLineup <- function(expr,
333335
#' @examples # !formatR
334336
#' library(shiny)
335337
#' app <- shinyApp(
336-
#' ui = fluidPage(taggleOutput('taggle')),
338+
#' ui = fluidPage(taggleOutput("taggle")),
337339
#' server = function(input, output) {
338340
#' taggle <- lineupBuilder(iris) |> buildTaggle()
339-
#' output$taggle = renderTaggle(taggle)
341+
#' output$taggle <- renderTaggle(taggle)
340342
#' }
341343
#' )
342344
#'
343-
#' \donttest{if (interactive()) app}
345+
#' \donttest{
346+
#' if (interactive()) app
347+
#' }
344348
#' @export
345349
taggleOutput <- function(outputId,
346350
width = "100%",

0 commit comments

Comments
 (0)