Skip to content

Commit 37a119b

Browse files
Remove quotes from library() calls
1 parent 16f1c48 commit 37a119b

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

DESCRIPTION

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
Package: future.callr
2-
Version: 0.8.2-9218
2+
Version: 0.8.2-9219
33
Depends:
44
R (>= 3.4.0),
55
future (>= 1.49.0)
@@ -14,6 +14,8 @@ Suggests:
1414
R.rsp
1515
VignetteBuilder:
1616
R.rsp
17+
Remotes:
18+
futureverse/future@develop
1719
Title: A Future API for Parallel Processing using 'callr'
1820
Authors@R: c(person("Henrik", "Bengtsson",
1921
role = c("aut", "cre", "cph"),

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ utilizes the **[callr]** package.
2121
For example,
2222

2323
```r
24-
> library("future.callr")
24+
> library(future.callr)
2525
> plan(callr)
2626
>
2727
> x %<-% { Sys.sleep(5); 3.14 }
@@ -109,7 +109,7 @@ futures are evaluated_. For instance, to use `callr` futures, run the
109109
demo as:
110110

111111
```r
112-
library("future.callr")
112+
library(future.callr)
113113
plan(callr)
114114
demo("mandelbrot", package = "future", ask = FALSE)
115115
```

vignettes/future.callr.md.rsp

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ utilizes the **[callr]** package.
3434
For example,
3535

3636
```r
37-
> library("future.callr")
37+
> library(future.callr)
3838
> plan(callr)
3939
>
4040
> x %<-% { Sys.sleep(5); 3.14 }
@@ -122,7 +122,7 @@ futures are evaluated_. For instance, to use `callr` futures, run the
122122
demo as:
123123

124124
```r
125-
library("future.callr")
125+
library(future.callr)
126126
plan(callr)
127127
demo("mandelbrot", package = "future", ask = FALSE)
128128
```

0 commit comments

Comments
 (0)