Skip to content

Commit 49c97da

Browse files
author
Ryan Patrick Kyle
committed
🙈 fix typos
1 parent 402969d commit 49c97da

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

R/dash.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -963,7 +963,7 @@ Dash <- R6::R6Class(
963963
# set the modtime to track state of the Dash app directory
964964
# this calls getAppPath, which will try three approaches to
965965
# identifying the local app path (depending on whether the app
966-
# is invoked via script, source(), or executed dire ctly from console)
966+
# is invoked via script, source(), or executed directly from console)
967967
self$config$ui <- dev_tools_ui
968968

969969
if (dev_tools_hot_reload) {
@@ -1148,7 +1148,7 @@ Dash <- R6::R6Class(
11481148
# assuming private$layout is either a function or a list of components...
11491149
layout_ <- if (is.function(private$layout_)) private$layout_() else private$layout_
11501150

1151-
# accomodate functions that return a single component
1151+
# accommodate functions that return a single component
11521152
if (is.component(layout_)) layout_ <- list(layout_)
11531153

11541154
# make sure we are working with a list of components
@@ -1468,7 +1468,7 @@ Dash <- R6::R6Class(
14681468
!is.null(v[["script"]]) && tools::file_ext(v[["script"]]) == "map"
14691469
}, logical(1))]
14701470

1471-
# styleheets always go in header
1471+
# stylesheets always go in header
14721472
css_deps <- compact(lapply(depsAll, function(dep) {
14731473
if (is.null(dep$stylesheet)) return(NULL)
14741474
dep$script <- NULL

0 commit comments

Comments
 (0)