We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the examples and my own code, I see <NA> in the output https://lifecycle.r-lib.org/reference/deprecate_soft.html#ref-examples
<NA>
deprecate_warn("1.0.0", "foo()") #> Warning: `foo()` was deprecated in <NA> 1.0.0.
I think it's not finding the pkg argument
pkg
lifecycle/R/deprecate.R
Line 316 in 80a1e52
The text was updated successfully, but these errors were encountered:
It will be detected once used from a function that lives in a package namespace. We could add an info bullet about this.
The other way you can provide the info is by supplying "pkg::foo()" instead of "foo()".
"pkg::foo()"
"foo()"
Sorry, something went wrong.
We might also try a different placeholder than <NA>.
No branches or pull requests
In the examples and my own code, I see
<NA>
in the outputhttps://lifecycle.r-lib.org/reference/deprecate_soft.html#ref-examples
I think it's not finding the
pkg
argumentlifecycle/R/deprecate.R
Line 316 in 80a1e52
The text was updated successfully, but these errors were encountered: