-
-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix deprecation message; add renaming to the examples (#362)
before: ``` r$> lifecycle::deprecate_soft("0.6.1", "datanames()", details = "names()") Warning message: `datanames()` was deprecated in <NA> 0.6.1. ℹ names() ``` after: ``` r$> lifecycle::deprecate_soft("0.6.1", "datanames()", with = "names()") Warning message: `datanames()` was deprecated in <NA> 0.6.1. ℹ Please use `names()` instead. ``` Also updated docs to give example of reassigning names - previously done with `datanames(x) <- ...` which is deprecated now
- Loading branch information
Showing
3 changed files
with
31 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.