Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
rossarmstrong committed Feb 2, 2023
1 parent a08e92d commit ab02f60
Show file tree
Hide file tree
Showing 5 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion R/mod_create_image.R
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ mod_create_image_ui <- function(id){
#'
#' @noRd
mod_create_image_server <- function(id){
moduleServer( id, function(input, output, session){
moduleServer(id, function(input, output, session){
ns <- session$ns

## START - MY CODE
Expand Down
2 changes: 1 addition & 1 deletion R/mod_input_apikey.R
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ mod_input_apikey_ui <- function(id){
#'
#' @noRd
mod_input_apikey_server <- function(id){
moduleServer( id, function(input, output, session){
moduleServer(id, function(input, output, session){
ns <- session$ns

## START - MY CODE
Expand Down
2 changes: 1 addition & 1 deletion R/mod_show_gallery.R
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ mod_show_gallery_ui <- function(id){
#'
#' @noRd
mod_show_gallery_server <- function(id){
moduleServer( id, function(input, output, session){
moduleServer(id, function(input, output, session){
ns <- session$ns

## START - MY CODE
Expand Down
2 changes: 1 addition & 1 deletion R/mod_show_instructions.R
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ mod_show_instructions_ui <- function(id){
#'
#' @noRd
mod_show_instructions_server <- function(id){
moduleServer( id, function(input, output, session){
moduleServer(id, function(input, output, session){
ns <- session$ns

## START - MY CODE
Expand Down
2 changes: 1 addition & 1 deletion tests/spelling.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
if(requireNamespace('spelling', quietly = TRUE))
if (requireNamespace('spelling', quietly = TRUE))
spelling::spell_check_test(vignettes = TRUE, error = FALSE,
skip_on_cran = TRUE)

0 comments on commit ab02f60

Please sign in to comment.