diff --git a/DESCRIPTION b/DESCRIPTION index fa2a545..35abc71 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,13 +1,13 @@ Package: sqltargets Type: Package -Title: Targets Extension for SQL Queries +Title: Targets Extension for 'SQL' Queries Version: 0.0.1 Authors@R: c( person("David", "Ranzolin", email = "daranzolin@gmail.com", role=c("aut", "cre", "cph")) ) Maintainer: David Ranzolin -Description: Provides an extension for SQL queries as separate file - within targets pipelines. The shorthand creates two 'targets', +Description: Provides an extension for 'SQL' queries as separate file + within targets pipelines. The shorthand creates two targets, the query file and the query result. License: MIT + file LICENSE Encoding: UTF-8 diff --git a/R/sqltargets-option.R b/R/sqltargets-option.R index 7fd6f3f..cbc2d68 100644 --- a/R/sqltargets-option.R +++ b/R/sqltargets-option.R @@ -1,6 +1,9 @@ #' Get or Set sqltargets Options #' #' @param option_name Character. Option name. See Details. +#' @param option_value Value to assign to option `x`. +#' +#' @return No return value, called for side effects #' #' @details #' @@ -14,7 +17,6 @@ sqltargets_option_get <- function(option_name) { getOption(option_name, default = option_value) } -#' @param option_value Value to assign to option `x`. #' @rdname sqltargets-options #' @export sqltargets_option_set <- function(option_name, option_value) { diff --git a/man/sqltargets-options.Rd b/man/sqltargets-options.Rd index 3945c22..d1be25c 100644 --- a/man/sqltargets-options.Rd +++ b/man/sqltargets-options.Rd @@ -14,6 +14,9 @@ sqltargets_option_set(option_name, option_value) \item{option_value}{Value to assign to option `x`.} } +\value{ +No return value, called for side effects +} \description{ Get or Set sqltargets Options }