Skip to content

Commit 1d7feec

Browse files
Fix typo bug in internal stopf() and warnf() around 'call.' argument
1 parent 926db1c commit 1d7feec

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

DESCRIPTION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
Package: future.p2p
22
Title: A Peer-to-Peer Compute Cluster via Futureverse
3-
Version: 0.4.0-9000
3+
Version: 0.4.0-9001
44
Description: Implementation of the 'Future' API <doi:10.32614/RJ-2021-048> that resolves futures on a peer-to-peer ('P2P') compute environment. By using this future backend, you and your friends can share your spare compute resources with each other.
55
Imports:
66
future (>= 1.67.0),

R/utils-conditions.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ stopf <- function(fmt, ..., call. = TRUE, domain = NULL) { #nolint
33
msg <- .makeMessage(msg, domain = domain)
44
if (is.call(call.)) {
55
call <- call.
6-
} else if (isTRUE(call)) {
6+
} else if (isTRUE(call.)) {
77
call <- sys.call(which = -1L)
88
} else {
99
call <- NULL
@@ -21,7 +21,7 @@ warnf <- function(fmt, ..., call. = TRUE, immediate. = FALSE, domain = NULL) {
2121
msg <- .makeMessage(msg, domain = domain)
2222
if (is.call(call.)) {
2323
call <- call.
24-
} else if (isTRUE(call)) {
24+
} else if (isTRUE(call.)) {
2525
call <- sys.call(which = -1L)
2626
} else {
2727
call <- NULL

0 commit comments

Comments
 (0)