-
Notifications
You must be signed in to change notification settings - Fork 233
New issue
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
unexpected missing links in documentation object #973
Comments
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
This comment has been minimized.
Minimal reprex: rd <- roxygen2:::parse_rd("\\code{\\link{model.offset}}")
roxygen2:::tweak_links(rd, "lme4")
#> \code{\link[lme4]{model.offset}} Created on 2019-11-20 by the reprex package (v0.3.0) |
And the root cause is this: roxygen2:::has_topic("model.offset", "lme4")
#> [1] TRUE Created on 2019-11-20 by the reprex package (v0.3.0) |
This error is still happening. Is there any updates? |
This is a closed issue. If you think that this is still not fixed, please open another issue with an example. Thanks! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In some functions in my package, I am inheriting arguments from
lme4::lmer
andlme4::glmer
-#' @inheritDotParams lme4::lmer
This works without any issue:
Source: https://indrajeetpatil.github.io/groupedstats/reference/grouped_lmer.html#arguments
But it is producing a
WARNING
in myR CMD CHECK
-This is not supposed to happen because this is not a reference in code, but in the documentation.
As @bbolker pointed out, this might be a
roxygen2
buglet?(specifically, here:
roxygen2/R/rd-inherit.R
Lines 188 to 190 in e016a70
The text was updated successfully, but these errors were encountered: