Skip to content

Commit 2c7b77c

Browse files
authored
Merge pull request #532 from cmu-delphi/lcb/fix-version-bound-typo
Fix validate_version_bound typo
2 parents 44e7095 + c8e4d69 commit 2c7b77c

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

DESCRIPTION

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Type: Package
22
Package: epiprocess
33
Title: Tools for basic signal processing in epidemiology
4-
Version: 0.9.0
4+
Version: 0.9.1
55
Authors@R: c(
66
person("Jacob", "Bien", role = "ctb"),
77
person("Logan", "Brooks", , "[email protected]", role = c("aut", "cre")),

R/archive.R

+1-1
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@
2525
#' @noRd
2626
validate_version_bound <- function(version_bound, x, na_ok = FALSE,
2727
version_bound_arg = rlang::caller_arg(version_bound),
28-
x_arg = rlang::caller_arg(version_bound)) {
28+
x_arg = rlang::caller_arg(x)) {
2929
if (is.null(version_bound)) {
3030
cli_abort(
3131
"{version_bound_arg} cannot be NULL",

0 commit comments

Comments
 (0)