Skip to content

Commit 21d125d

Browse files
committed
fix rcmdcheck
1 parent 51a1a0a commit 21d125d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

R/utils-get_code_dependency.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -383,7 +383,7 @@ graph_parser <- function(x, graph) {
383383
dependency_occurrences <- lapply(dependencies, function(dependency) {
384384
# track down dependencies and where they occur on the lhs in previous calls
385385
last_x_occurrence <- max(which(occurrence))
386-
reduced_graph <- head(graph[seq_len(last_x_occurrence)], -1)
386+
reduced_graph <- utils::head(graph[seq_len(last_x_occurrence)], -1)
387387
c(graph_parser(dependency, reduced_graph), last_x_occurrence)
388388
})
389389

0 commit comments

Comments
 (0)