Skip to content

Commit

Permalink
need double &&
Browse files Browse the repository at this point in the history
  • Loading branch information
radbasa committed Aug 27, 2024
1 parent 52af8cb commit 9628f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/zzz.R
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
r_version_compatibility <- function() {
if (as.numeric(R.Version()$major) >= 4 & as.numeric(R.Version()$minor) >= 3.0) {
if (as.numeric(R.Version()$major) >= 4 && as.numeric(R.Version()$minor) >= 3.0) {
namespaced_function_calls()

Check warning on line 3 in R/zzz.R

View check run for this annotation

Codecov / codecov/patch

R/zzz.R#L2-L3

Added lines #L2 - L3 were not covered by tests
} else {
NULL

Check warning on line 5 in R/zzz.R

View check run for this annotation

Codecov / codecov/patch

R/zzz.R#L5

Added line #L5 was not covered by tests
Expand Down

0 comments on commit 9628f3d

Please sign in to comment.