Skip to content

Commit

Permalink
issue 58 : aesthetic function names added to end of each script
Browse files Browse the repository at this point in the history
  • Loading branch information
sgetalbo committed Nov 22, 2018
1 parent f4b6d1f commit a737f38
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 0 deletions.
3 changes: 3 additions & 0 deletions R/createAnalysisProject.R
Original file line number Diff line number Diff line change
Expand Up @@ -60,3 +60,6 @@ createAnalysisProject <- function(name, title = NULL,
reset_proj(current_proj)
invisible(TRUE)
}

#' @describeIn createAnalysisProject
create_analysis_project = createAnalysisProject
3 changes: 3 additions & 0 deletions R/createBasicProject.R
Original file line number Diff line number Diff line change
Expand Up @@ -126,3 +126,6 @@ createBasicProject <- function(name,

invisible(TRUE)
}

#' @describeIn createBasicProject
create_basic_project = createBasicProject
3 changes: 3 additions & 0 deletions R/createPackageProject.R
Original file line number Diff line number Diff line change
Expand Up @@ -151,3 +151,6 @@ createPackageProject <- function(name, title = NULL,
reset_proj(current_proj)
invisible(TRUE)
}

#' @describeIn createPackageProject
create_package_project = createPackageProject
3 changes: 3 additions & 0 deletions R/createTrainingProject.R
Original file line number Diff line number Diff line change
Expand Up @@ -148,3 +148,6 @@ handoutEngine <- function() {
slideEngine <- function() {
c("rmarkdown", "revealjs", "xaringan")
}

#' @describeIn createTrainingProject
create_training_project = createTrainingProject

0 comments on commit a737f38

Please sign in to comment.