Fix broken NatSpec cross-references in Account and AccessManager#6526
Fix broken NatSpec cross-references in Account and AccessManager#6526akhilesharora wants to merge 2 commits into
Conversation
🦋 Changeset detectedLatest commit: 0ac6bd8 The changes in this PR will be included in the next version bump. This PR includes changesets to release 0 packagesWhen changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
WalkthroughThis PR contains purely documentation corrections across two contracts. AccessManager's Suggested labels
🚥 Pre-merge checks | ✅ 5✅ Passed checks (5 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Tip 💬 Introducing Slack Agent: The best way for teams to turn conversations into code.Slack Agent is built on CodeRabbit's deep understanding of your code, so your team can collaborate across the entire SDLC without losing context.
Built for teams:
One agent for your entire SDLC. Right inside Slack. Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
{entrypoint}and{executed}currently render as literal text on docs.openzeppelin.com instead of resolving to links, because solidity-docgen does case-sensitive cross-reference lookup.In
contracts/account/Account.sol:function entryPoint() public view virtual returns (IEntryPoint){entrypoint}at lines 118, 128, 138In
contracts/access/manager/AccessManager.sol:function execute(address target, bytes calldata data){executed}at line 725 (matches no symbol; six other docblocks in the same file already use{execute})Doc-only fix, no compiled code touched. Ran
npm testlocally on the fix branch: 7653 passing, 0 failing.Before:
After:
PR Checklist
npx changeset add)