Skip to content

Commit

Permalink
decorator -> decorators
Browse files Browse the repository at this point in the history
  • Loading branch information
m7pr committed Nov 11, 2024
1 parent b09ff42 commit 106bf4c
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions vignettes/decorate-modules-output.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -250,12 +250,12 @@ app <- init(
data = teal_data(iris = iris, mtcars = mtcars),
modules = modules(
tm_decorated_plot("identity"),
tm_decorated_plot("no-ui", decorator = static_decorator),
tm_decorated_plot("lang", decorator = static_decorator_lang),
tm_decorated_plot("interactive", decorator = interactive_decorator),
tm_decorated_plot("interactive-from lang", decorator = interactive_decorator_lang),
tm_decorated_plot("from-fun", decorator = gg_xlab_decorator("plot")),
tm_decorated_plot("failing", decorator = failing_decorator)
tm_decorated_plot("no-ui", decorators = static_decorator),
tm_decorated_plot("lang", decorators = static_decorator_lang),
tm_decorated_plot("interactive", decorators = interactive_decorator),
tm_decorated_plot("interactive-from lang", decorators = interactive_decorator_lang),
tm_decorated_plot("from-fun", decorators = gg_xlab_decorator("plot")),
tm_decorated_plot("failing", decorators = failing_decorator)
)
)
Expand Down

0 comments on commit 106bf4c

Please sign in to comment.