Skip to content

Rollup of 11 pull requests #86127

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

Merged
merged 27 commits into from
Jun 8, 2021
Merged
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
86562b4
Use `Iterator::find` instead of open-coding it
LingMan Jun 1, 2021
51d98e3
Update the documentation of `-C force-unwind-tables`
Jun 3, 2021
c6004a5
Remove rustfmt tests from top-level .gitattributes
jyn514 Jun 4, 2021
eb3fd6d
Default panic message should print Box<dyn Any>
reaganmcf Jun 6, 2021
570ba09
Fix invalid weight for type pages
GuillaumeGomez Jun 6, 2021
4597362
Add test to check that font-weight is correctly set on type page
GuillaumeGomez Jun 6, 2021
8330233
Update testsuite to match new panic msg
reaganmcf Jun 6, 2021
a0aabf7
:arrow_up: rust-analyzer
lnicola Jun 7, 2021
4ca7a11
Fix integration of codeblocks in search result description
GuillaumeGomez Jun 7, 2021
314ef59
Add test to ensure the result descripton is correctly handling codebl…
GuillaumeGomez Jun 7, 2021
a20870b
Comment out unused error codes in error_codes.rs
FabianWolff Jun 7, 2021
c01d63a
Add E0316.md
FabianWolff Jun 7, 2021
09307a3
Bless ui/where-clauses/where-for-self.rs test
FabianWolff Jun 7, 2021
fb92c92
Remove lifetime hack
camsteffen Jun 7, 2021
5aa188a
Correct type signature in doc for Bound::as_mut
glittershark Jun 7, 2021
fddf012
Clarify documentation of slice sorting methods
Lionelf329 Jun 4, 2021
472dbec
Rollup merge of #85906 - LingMan:iter_find, r=matthewjasper
JohnTitor Jun 8, 2021
3502bff
Rollup merge of #85951 - hyd-dev:force-unwind-tables, r=steveklabnik
JohnTitor Jun 8, 2021
2a23af6
Rollup merge of #85985 - Lionelf329:master, r=joshtriplett
JohnTitor Jun 8, 2021
c302810
Rollup merge of #85989 - jyn514:gitignore-cleanup, r=ehuss
JohnTitor Jun 8, 2021
b7d05f8
Rollup merge of #86074 - reaganmcf:iss-86039, r=jyn514
JohnTitor Jun 8, 2021
c783e28
Rollup merge of #86078 - GuillaumeGomez:type-page-font-weight, r=jsha
JohnTitor Jun 8, 2021
e062121
Rollup merge of #86090 - lnicola:rust-analyzer-2021-06-07, r=jonas-sc…
JohnTitor Jun 8, 2021
f99a892
Rollup merge of #86095 - GuillaumeGomez:search-description-codeblock,…
JohnTitor Jun 8, 2021
2e8ffed
Rollup merge of #86096 - FabianWolff:ec-E0316, r=GuillaumeGomez
JohnTitor Jun 8, 2021
a416e05
Rollup merge of #86101 - glittershark:bound-as-mut-doc-fix, r=m-ou-se
JohnTitor Jun 8, 2021
b7fadfd
Rollup merge of #86103 - camsteffen:lifetime-hack, r=jackh726
JohnTitor Jun 8, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Correct type signature in doc for Bound::as_mut
  • Loading branch information
glittershark committed Jun 7, 2021
commit 5aa188ac5d20c6f7f1ed131a6e4f932f22b0d312
2 changes: 1 addition & 1 deletion library/core/src/ops/range.rs
Original file line number Diff line number Diff line change
Expand Up @@ -686,7 +686,7 @@ impl<T> Bound<T> {
}
}

/// Converts from `&mut Bound<T>` to `Bound<&T>`.
/// Converts from `&mut Bound<T>` to `Bound<&mut T>`.
#[inline]
#[unstable(feature = "bound_as_ref", issue = "80996")]
pub fn as_mut(&mut self) -> Bound<&mut T> {
Expand Down