-
Notifications
You must be signed in to change notification settings - Fork 11.9k
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
Fix Broken Docs References #5436
base: master
Are you sure you want to change the base?
Conversation
|
@@ -159,7 +159,7 @@ abstract contract ERC721Consecutive is IERC2309, ERC721 { | |||
} | |||
|
|||
/** | |||
* @dev Used to offset the first token id in {_nextConsecutiveId} | |||
* @dev Used to offset the first token id in `_nextConsecutiveId` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Note: the rational here is that _nextConsecutiveId
is a private function, and therefore doesn't appear in the docs
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah this is important. I've personally like everything documented regardless of whether the function is private but is true that references to these functions are broken
@@ -159,7 +159,7 @@ abstract contract ERC721Consecutive is IERC2309, ERC721 { | |||
} | |||
|
|||
/** | |||
* @dev Used to offset the first token id in {_nextConsecutiveId} | |||
* @dev Used to offset the first token id in `_nextConsecutiveId` |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Yeah this is important. I've personally like everything documented regardless of whether the function is private but is true that references to these functions are broken
No changes in this PR apply to code merged since v5.2.0. It can be cherry-picked onto the docs branch easily. |
This PR fixes broken references in the generated docs.
PR Checklist
npx changeset add
)