regenerate docs under roxygen2 8.1.0 - #199
Merged
Merged
Conversation
Pure formatting; no semantic change. Committed on its own so the reformatting does not
bury unrelated work (it would otherwise leak into any PR whose author happened to run
document() on 8.1.0).
NAMESPACE -- 8.1.0 groups imports per package, e.g.
importFrom(RColorBrewer,
brewer.pal,
brewer.pal.info
)
instead of one importFrom() per symbol. Verified equivalent by parsing both files
and comparing normalised directive sets: 353 before, 353 after, identical.
DESCRIPTION -- Config/roxygen2/version 8.0.0 -> 8.1.0.
man/convertUnwantedLCC.Rd -- re-wrapped; this file was already stale against 8.0.0.
Note for the team: until everyone's roxygen2 is >= 8.1.0, the next person to run
document() on 8.0.0 will silently revert the NAMESPACE format.
Co-Authored-By: Claude Opus 5 (1M context) <noreply@anthropic.com>
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Pure formatting, no semantic change. Split out so the reformatting doesn't bury unrelated work — it would otherwise leak into any PR whose author happens to run
document()on 8.1.0 (which is how it surfaced, during #198).What changed
NAMESPACE— 8.1.0 groups imports per package:instead of one
importFrom()per symbol. That's 376 lines of diff for zero behaviour change.Verified equivalent, rather than eyeballed: both files parsed and their directive sets normalised and compared — 353 directives before, 353 after, sets identical.
DESCRIPTION—Config/roxygen2/version: 8.0.0 → 8.1.0.man/convertUnwantedLCC.Rd— re-wrapped. This one was already stale against 8.0.0, so it's a pre-existing drift being cleaned up here.Note for the team
Until everyone's roxygen2 is
>= 8.1.0, the next person to rundocument()on 8.0.0 will silently revert the NAMESPACE format. TheConfig/roxygen2/versionfield makes that visible in the diff, at least.Sequenced after #198 and before updating #197, so the
convertUnwantedLCC.Rdre-wrap is resolved once rather than conflicting across branches.🤖 Generated with Claude Code