Skip to content
Closed
Changes from 2 commits
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
c176e04
Add debug info tests for range, fix-sized array, and cell types
nanguye Mar 30, 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
b7c611e
Rollup merge of #85448 - nanguye2496:nanguye2496/debuginfo_tests, r=M…
JohnTitor Jun 8, 2021
9df63ac
Rollup merge of #85906 - LingMan:iter_find, r=matthewjasper
JohnTitor Jun 8, 2021
97a7828
Rollup merge of #85951 - hyd-dev:force-unwind-tables, r=steveklabnik
JohnTitor Jun 8, 2021
040c912
Rollup merge of #85985 - Lionelf329:master, r=joshtriplett
JohnTitor Jun 8, 2021
f51634d
Rollup merge of #86074 - reaganmcf:iss-86039, r=jyn514
JohnTitor Jun 8, 2021
a1e7ee2
Rollup merge of #86078 - GuillaumeGomez:type-page-font-weight, r=jsha
JohnTitor Jun 8, 2021
8e1b959
Rollup merge of #86090 - lnicola:rust-analyzer-2021-06-07, r=jonas-sc…
JohnTitor Jun 8, 2021
dad96ce
Rollup merge of #86095 - GuillaumeGomez:search-description-codeblock,…
JohnTitor Jun 8, 2021
7606a8c
Rollup merge of #86096 - FabianWolff:ec-E0316, r=GuillaumeGomez
JohnTitor Jun 8, 2021
e0464fc
Rollup merge of #86101 - glittershark:bound-as-mut-doc-fix, r=m-ou-se
JohnTitor Jun 8, 2021
ef579cc
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
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