Skip to content

Commit

Permalink
fix for added integer/double type strictness in dev dplyr
Browse files Browse the repository at this point in the history
closes #19, thanks @werkstattcodes.
  • Loading branch information
MilesMcBain committed Nov 13, 2022
1 parent c401e8d commit 039b4b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion DESCRIPTION
@@ -1,6 +1,6 @@
Package: breakerofchains
Title: Break Chained Expressions and Run Them with Printed Output
Version: 0.3.1
Version: 0.3.2
Authors@R:
person(given = "Miles",
family = "McBain",
Expand Down
2 changes: 1 addition & 1 deletion R/polyfill_base_pipe.R
Expand Up @@ -13,7 +13,7 @@ polyfill_base_pipe <- function(source_tokens) {
greater_than <- source_tokens$value == ">"
same_row <-
source_tokens$row == dplyr::lead(source_tokens$row,
default = Inf)
default = .Machine$integer.max)
pipes <-
vertical_bar &
dplyr::lead(greater_than, default = FALSE) &
Expand Down

0 comments on commit 039b4b5

Please sign in to comment.