Rollup merge of #80068 - jyn514:mut-reference, r=m-ou-se

Add `&mut` as an alias for 'reference' primitive

Closes https://github.com/rust-lang/rust/issues/46075.
This commit is contained in:
Yuki Okushi 2020-12-19 15:16:05 +09:00 committed by GitHub
commit dbcf659dce
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -924,6 +924,7 @@ mod prim_usize {}
#[doc(primitive = "reference")]
#[doc(alias = "&")]
#[doc(alias = "&mut")]
//
/// References, both shared and mutable.
///