Skip to content

Commit be8e0f1

Browse files
HELP: Fix; argument is 'style' not 'by'
1 parent f5457df commit be8e0f1

File tree

3 files changed

+8
-8
lines changed

3 files changed

+8
-8
lines changed

DESCRIPTION

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future.tools
2-
Version: 0.1.0-9000
2+
Version: 0.1.0-9001
33
Title: Tools for Working with Futures
44
Depends:
55
R (>= 3.3.0),
@@ -15,5 +15,5 @@ Authors@R: c(person("Henrik", "Bengtsson", role=c("aut", "cre", "cph"),
1515
Description: Tools for Working with Futures.
1616
License: LGPL (>= 2.1)
1717
LazyLoad: TRUE
18-
RoxygenNote: 7.3.0
18+
RoxygenNote: 7.3.1
1919
Roxygen: list(markdown = TRUE)

incl/ggjournal.R

+3-3
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ slow_fcn <- function(x) {
88

99
## Plot with fixed x and y limits
1010
ggjournal_x <- function(js) {
11-
for (by in c("future", "worker")) {
12-
item_range <- if (by == "future") c(1, 5) else c(0, 1.8)
13-
print(ggjournal(js, by = by,
11+
for (style in c("future", "worker")) {
12+
item_range <- if (style == "future") c(1, 5) else c(0, 1.8)
13+
print(ggjournal(js, style = style,
1414
time_range = c(0, 2.0), item_range = item_range))
1515
}
1616
}

man/ggjournal.Rd

+3-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)