Skip to content

Commit

Permalink
fixing man again
Browse files Browse the repository at this point in the history
  • Loading branch information
muschellij2 committed May 13, 2024
1 parent 10f14f6 commit bc396d6
Show file tree
Hide file tree
Showing 5 changed files with 13 additions and 2 deletions.
3 changes: 3 additions & 0 deletions CRAN-SUBMISSION
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
Version: 1.6.10
Date: 2024-05-10 12:02:36 UTC
SHA: 10f14f69f768256910de0e91fdb70ceb6a34d145
2 changes: 1 addition & 1 deletion R/check_fs_result.R
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
#' @param fe_before (logical) did the output file exist before the command ran
#' @param fe_after (logical) did the output file exist after the command ran
#'
#' @return NULL
#' @return No return value, called for side effects
#' @export
check_fs_result = function(res, fe_before, fe_after) {
if (res != 0 & !fe_after) {
Expand Down
3 changes: 2 additions & 1 deletion R/fs_setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,8 @@ fs_subj_dir = function(){
#' @description Sets the SUBJECTS_DIR variable in the system environment or
#' \code{options("fs.subj_dir" = x)}
#' @param x path to SUBJECTS_DIR defaults to \code{file.path(fs_dir(), "subjects")}
#' @return NULL
#' @return No return value, called for side effects (`SUBJECTS_DIR`
#' environment variable set, and `fs.subj_dir` option set)
#'
#' @export
set_fs_subj_dir = function(x = file.path(fs_dir(), "subjects")){
Expand Down
3 changes: 3 additions & 0 deletions man/check_fs_result.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 4 additions & 0 deletions man/set_fs_subj_dir.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit bc396d6

Please sign in to comment.