Skip to content

Commit d1a4c9e

Browse files
committed
Fix docs
1 parent 44ffe96 commit d1a4c9e

11 files changed

Lines changed: 23 additions & 14 deletions

File tree

.github/workflows/R-CMD-check.yaml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,6 @@ jobs:
2424
- {os: windows-latest, r: 'release'}
2525
- {os: ubuntu-latest, r: 'devel', http-user-agent: 'release'}
2626
- {os: ubuntu-latest, r: 'release'}
27-
- {os: ubuntu-latest, r: 'oldrel-1'}
2827

2928
env:
3029
GITHUB_PAT: ${{ secrets.GITHUB_TOKEN }}

R/lib.R

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
#' @param x A [`pkg_origin()`] object used for default dispatch.
99
#' @param ... Additional values
1010
#' @param .class An optional subclass, used primarily for dispatch.
11-
#'
12-
#' @keywords specs
11+
#'
12+
#' @family specs
1313
lib_path <- function(x, ..., .class = c()) {
1414
UseMethod("lib_path")
1515
}
@@ -58,7 +58,7 @@ format.lib_path <- function(x, ...) {
5858
#' @param lib.root A root directory for the isolated library.
5959
#' @param dir_hash unique identifier of the isolated library
6060
#' @param name human-readable subname of the isolated library
61-
#'
61+
#'
6262
#' @keywords internal
6363
lib <- function(x, ...) {
6464
UseMethod("lib")

R/next_task.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' @param node Node(s) for which libpath should be constructed based on `g`
99
#' @param output Path to the checked output directory
1010
#' @inheritParams lib
11-
#'
11+
#'
1212
#' @keywords internal
1313
task_graph_libpaths <- function(
1414
g,
@@ -42,7 +42,7 @@ task_graph_libpaths <- function(
4242
#'
4343
#' @inheritParams task_graph_libpaths
4444
#' @param ... additional params passed to downstream methods
45-
#'
45+
#'
4646
#' @keywords internal
4747
start_task <- function(node, g, ...) {
4848
UseMethod("start_task")

R/options.R

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,8 @@ options::define_options(
4343
"_R_CHECK_FORCE_SUGGESTS_" = FALSE,
4444
"_R_CHECK_RD_XREFS_" = FALSE,
4545
"_R_CHECK_SYSTEM_CLOCK_" = FALSE,
46-
"_R_CHECK_SUGGESTS_ONLY_" = TRUE
46+
"_R_CHECK_SUGGESTS_ONLY_" = TRUE,
47+
"_R_CHECK_CRAN_INCOMING_=" = TRUE
4748
),
4849

4950
"`character` vector of args passed to the R CMD build.",

R/task.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ task <- function(..., .subclass = NULL) {
2323
#' @param ... Objects passed to specified class functions
2424
#' @param .subclass character name of the subclass. It will be appended with
2525
#' "_meta" suffix.
26-
#'
26+
#'
2727
#' @family tasks
2828
#' @export
2929
meta_task <- function(..., .subclass = NULL) {

R/utils-cli.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
#' @param nodes graph nodes to format.
99
#' @param task task to format.
1010
#' @param tasks currently unused.
11-
#'
11+
#'
1212
#' @keywords internal
1313
task_formats <- function(
1414
g = NULL,
@@ -109,7 +109,7 @@ task_formats <- function(
109109
#'
110110
#' # Examples for unexported functions are not supported
111111
#' # fmt(task = task, "{action} {package} ({version}) from {source}")
112-
#'
112+
#'
113113
#' @keywords internal
114114
fmt <- function(
115115
...,

R/utils-igraph.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ star_graph <- function(...) {
4747
#' taking the attribute from the first non-NA value observed.
4848
#'
4949
#' @param g task_graph object
50-
#'
50+
#'
5151
#' @keywords internal
5252
graph_dedup_attrs <- function(g) {
5353
# pattern appended to duplicated attributes

man/lib_path.Rd

Lines changed: 5 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/options.Rd

Lines changed: 2 additions & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

man/options_params.Rd

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)