From 0abd711f9b44d947b404fffbbf5733d85f7be5c0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pawe=C5=82?= Date: Fri, 13 Oct 2023 12:34:36 +0200 Subject: [PATCH] Get/Set containers dir documentation update --- R/cevomod-persistent.R | 4 ++-- man/get_containers_dir.Rd | 11 ----------- man/set_containers_dir.Rd | 7 +++++-- 3 files changed, 7 insertions(+), 15 deletions(-) delete mode 100644 man/get_containers_dir.Rd diff --git a/R/cevomod-persistent.R b/R/cevomod-persistent.R index 5e98bdc..6a02556 100644 --- a/R/cevomod-persistent.R +++ b/R/cevomod-persistent.R @@ -14,7 +14,7 @@ get_settings <- function() { } -#' Set the containers directory +#' Get/Set the containers directory #' @param dir Path for containers #' @export set_containers_dir <- function(dir) { @@ -28,7 +28,7 @@ set_containers_dir <- function(dir) { } -#' Get the containers directory +#' @rdname set_containers_dir #' @export get_containers_dir <- function() { get_settings()$containers_dir diff --git a/man/get_containers_dir.Rd b/man/get_containers_dir.Rd deleted file mode 100644 index a4504eb..0000000 --- a/man/get_containers_dir.Rd +++ /dev/null @@ -1,11 +0,0 @@ -% Generated by roxygen2: do not edit by hand -% Please edit documentation in R/cevomod-persistent.R -\name{get_containers_dir} -\alias{get_containers_dir} -\title{Get the containers directory} -\usage{ -get_containers_dir() -} -\description{ -Get the containers directory -} diff --git a/man/set_containers_dir.Rd b/man/set_containers_dir.Rd index 847b687..70c148b 100644 --- a/man/set_containers_dir.Rd +++ b/man/set_containers_dir.Rd @@ -2,13 +2,16 @@ % Please edit documentation in R/cevomod-persistent.R \name{set_containers_dir} \alias{set_containers_dir} -\title{Set the containers directory} +\alias{get_containers_dir} +\title{Get/Set the containers directory} \usage{ set_containers_dir(dir) + +get_containers_dir() } \arguments{ \item{dir}{Path for containers} } \description{ -Set the containers directory +Get/Set the containers directory }