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
When a package contains only one unique @family tag, e.g.
@family
@family scope-related functions
roxygen2 mutates the name to
roxygen2
scope.related.functions
This seems to be caused by the definition of invert. A small reproducible example:
invert
data <- structure(list(defer.Rd = "scope-related functions", scope_dir.Rd = "scope-related functions", scope_env_vars.Rd = "scope-related functions", scope_options.Rd = "scope-related functions"), .Names = c("defer.Rd", "scope_dir.Rd", "scope_env_vars.Rd", "scope_options.Rd")) roxygen2:::invert(data)
This could be fixed by avoiding the use of stack(), unstack() in invert: https://github.com/klutometis/roxygen/blob/master/R/family.R#L29-L32
stack()
unstack()
The text was updated successfully, but these errors were encountered:
avoid insertion of '.' between words in '@family' tag (closes r-lib#477)
05d8ed6
avoid insertion of '.' in family tag (closes r-lib#477)
0a4a0c1
d17e045
Merge pull request #478 from kevinushey/bugfix/family-name-mangling
f3c510c
avoid insertion of '.' between words in '@family' tag (closes #477)
No branches or pull requests
When a package contains only one unique
@family
tag, e.g.roxygen2
mutates the name toThis seems to be caused by the definition of
invert
. A small reproducible example:This could be fixed by avoiding the use of
stack()
,unstack()
ininvert
: https://github.com/klutometis/roxygen/blob/master/R/family.R#L29-L32The text was updated successfully, but these errors were encountered: