**Document functions using as minimum David's roxygen2 template** #52
Labels
EST2 subGroup1
Issue/Task of subGroup 1 of WKRDB-EST2
EST2 subGroup2
Issue/Task of subGroup2 of WKRDB-EST2
EST2 subGroup3
Issue/Task of subGroup3 of WKRDB-EST2
EST2 subGroup4
Issue/Task of subGroup4 of WKRDB-EST2
EST2 subGroup5
Issue/Task of subGroup5 of WKRDB-EST2
EST2 subGroup6
Issue/Task of subGroup6 of WKRDB-EST2
EST2 subGroup7
Issue/Task of subGroup7 of WKRDB-EST2
#' Minimum Documentation Example
#'
#' See the file "./tests/testthat/test-exampleFunction.R"
#' for defining expected input and output
#'
#' @param stringX first string
#' @param stringY second string
#'
#' @return The stringX and stringY pasted together
#'
#' @examples
#' exampleFunction("A", "B")
exampleFunction <- function(stringX, stringY) {
returnString <- paste(stringX, stringY)
returnString
}
The text was updated successfully, but these errors were encountered: