Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down
2 changes: 1 addition & 1 deletion README.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -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`!
Expand Down