diff --git a/DESCRIPTION b/DESCRIPTION index ed9ad15e7..9476b9805 100644 --- a/DESCRIPTION +++ b/DESCRIPTION @@ -13,7 +13,7 @@ Authors@R: c( URL: https://github.com/tidyverse/tibble BugReports: https://github.com/tidyverse/tibble/issues Depends: - R (>= 3.1.2) + R (>= 3.0.0) Imports: methods, assertthat, diff --git a/README.Rmd b/README.Rmd index 308a752bc..f1eda1a53 100644 --- a/README.Rmd +++ b/README.Rmd @@ -72,7 +72,7 @@ flights Tibbles are strict about subsetting. If you try to access a variable that does not exist via `$`, you'll get a warning: ```{r, error = TRUE} -flights$yea +flights$year ``` Tibbles also clearly delineate `[` and `[[`: `[` always returns another tibble, `[[` always returns a vector. No more `drop = FALSE`!