-
Notifications
You must be signed in to change notification settings - Fork 185
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
Rustdoc clippy and typo fixes #512
Conversation
Changelog already contains an entry about clippy fixes. |
lgtm but there's still more clippy failures, could you fix those? |
There are 2 lints "a const EMPTY_CELL: Cell<T> = Cell::new(0);
const INIT: UnsafeCell<MaybeUninit<T>> = UnsafeCell::new(MaybeUninit::uninit()); I'm not sure what to do here without breaking something. |
Clippy docs just suggest to replace |
But that doesn't compile, so it's not even an option. |
you can remove the const, and do |
Thanks. Done. |
Checks are finally all passed. |
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.
thanks!
Various documentation fixes for warnings shown by running
cargo clippy
andtypos
.