Skip to content

Commit

Permalink
docs
Browse files Browse the repository at this point in the history
  • Loading branch information
wlandau committed Jan 28, 2025
1 parent d6c9ebd commit e4b5294
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
6 changes: 4 additions & 2 deletions R/crew_controller.R
Original file line number Diff line number Diff line change
Expand Up @@ -258,7 +258,7 @@ crew_class_controller <- R6::R6Class(
private$.backup <- backup
invisible()
},
#' @description Validate the client.
#' @description Validate the controller.
#' @return `NULL` (invisibly).
validate = function() {
crew_assert(inherits(private$.client, "crew_class_client"))
Expand All @@ -274,7 +274,9 @@ crew_class_controller <- R6::R6Class(
length(.) == 1L,
is.finite(.),
. >= 0L,
message = "crashes_max must be a non-negative integer scalar."
message = c(
"crashes_max must be a finite non-negative integer scalar."
)
)
}
if (!is.null(private$.crash_log)) {
Expand Down
2 changes: 1 addition & 1 deletion man/crew_class_controller.Rd

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

0 comments on commit e4b5294

Please sign in to comment.