From 7c3af9b36d43bc78896ed14c579a2d413b2bea28 Mon Sep 17 00:00:00 2001 From: mrcaseb Date: Sat, 24 Jul 2021 19:46:32 +0200 Subject: [PATCH] Don't use `qs = TRUE` in `load_pbp()` example --- DESCRIPTION | 2 +- R/load_pbp.R | 2 +- man/load_pbp.Rd | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/DESCRIPTION b/DESCRIPTION index acb3a730..8c6180d3 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -1,7 +1,7 @@ Type: Package Package: nflfastR Title: Functions to Efficiently Access NFL Play by Play Data -Version: 4.1.0.9007 +Version: 4.1.0.9008 Authors@R: c(person(given = "Sebastian", family = "Carl", diff --git a/R/load_pbp.R b/R/load_pbp.R index cd6fa179..c3ce2e81 100644 --- a/R/load_pbp.R +++ b/R/load_pbp.R @@ -14,7 +14,7 @@ #' see [nflfastR]. #' @examples #' \donttest{ -#' pbp <- load_pbp(2019:2020, qs = TRUE) +#' pbp <- load_pbp(2019:2020) #' dplyr::glimpse(pbp) #' } #' @export diff --git a/man/load_pbp.Rd b/man/load_pbp.Rd index c80d561c..1345eb8d 100644 --- a/man/load_pbp.Rd +++ b/man/load_pbp.Rd @@ -24,7 +24,7 @@ or writes them into a database using some forwarded arguments in the dots. } \examples{ \donttest{ -pbp <- load_pbp(2019:2020, qs = TRUE) +pbp <- load_pbp(2019:2020) dplyr::glimpse(pbp) } }