Skip to content

Commit d752380

Browse files
committed
Add missing utils namespace decls
1 parent 0ee4f76 commit d752380

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

R/req-perform-stream.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ req_perform_stream <- function(req,
5353
cut <- cut_points(buf)
5454
n <- length(cut)
5555
if (n) {
56-
continue <- isTRUE(callback(head(buf, n = cut[n])))
57-
buf <- tail(buf, n = -cut[n])
56+
continue <- isTRUE(callback(utils::head(buf, n = cut[n])))
57+
buf <- utils::tail(buf, n = -cut[n])
5858
}
5959
}
6060
}

0 commit comments

Comments
 (0)