Closed dtolnay closed 1 year ago
Name | Link |
---|---|
Latest commit | 7b7fe2084cd797b53730911ea238b268ee5aa63e |
Latest deploy log | https://app.netlify.com/sites/cute-starship-2d9c9b/deploys/64a5b4df9f71ba00086b554c |
Closed in favor of #107 as I didn't have permission to amend the PR. Thank you @dtolnay!
Fixes #65.
Rustdoc's behavior for doc attributes on
pub use
items is to concatenate the attributes from thepub use
with the attributes from the original item. It looks like that is not what was intended in the documentation in postcard.In this PR I have converted all
pub use
that had///
doc comments on them, into functions. This way they get to have their own self-contained documentation.Before:
After: