Skip to content

Commit b26cba4

Browse files
authored
docs: Verbose conflict_prefer() (#684)
1 parent 0806a94 commit b26cba4

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

README.Rmd

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -108,7 +108,7 @@ Sys.setenv(DUCKPLYR_FALLBACK_COLLECT = 0)
108108
```
109109

110110
```{r dropin-dplyr}
111-
conflict_prefer("filter", "dplyr", quiet = TRUE)
111+
conflict_prefer("filter", "dplyr")
112112
```
113113

114114
The following code aggregates the inflight delay by year and month for the first half of the year.

README.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,9 @@ library(duckplyr)
6161
```
6262

6363
``` r
64-
conflict_prefer("filter", "dplyr", quiet = TRUE)
64+
conflict_prefer("filter", "dplyr")
65+
#> [conflicted] Will prefer dplyr::filter
66+
#> over any other package.
6567
```
6668

6769
The following code aggregates the inflight delay by year and month for

index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ library(duckplyr)
6060

6161

6262
``` r
63-
conflict_prefer("filter", "dplyr", quiet = TRUE)
63+
conflict_prefer("filter", "dplyr")
64+
#> [conflicted] Will prefer dplyr::filter
65+
#> over any other package.
6466
```
6567

6668
The following code aggregates the inflight delay by year and month for the first half of the year.

0 commit comments

Comments
 (0)