-
Notifications
You must be signed in to change notification settings - Fork 291
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
Documentation fix due to latest changes in the crate. #363
Conversation
|
Issue rust-lang/rust#102703 |
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! This is a great improvement to the documentation.
@bors r+ |
🔒 Merge conflict This pull request and the master branch diverged in a way that cannot be automatically merged. Please rebase on top of the latest master branch, and let the reviewer approve again. How do I rebase?Assuming
You may also read Git Rebasing to Resolve Conflicts by Drew Blessing for a short tutorial. Please avoid the "Resolve conflicts" button on GitHub. It uses Sometimes step 4 will complete without asking for resolution. This is usually due to difference between how Error message
|
☔ The latest upstream changes (presumably #355) made this pull request unmergeable. Please resolve the merge conflicts. |
@bors r+ |
☀️ Test successful - checks-actions |
Due to merged PR #357, #362 I think that we need to fix docummentation.
Fixed broken links in
HashMap::raw_table
andHashSet::raw_table
, as well as some typos and mistakes elsewhere (especially inEntryRef::or_insert_with_key
).To fix #349, I removed capacity comparisons in all places (except
drain
andclear
), however left the phrase "keeps the allocated memory for reuse", because although theerase
method may not release the capacity, the subsequentrehash_in_place
function definitely will release all.Close #349.