Add &mut as an alias for 'reference' primitive

This commit is contained in:
Joshua Nelson 2020-12-15 20:22:12 -05:00
parent cbab347e68
commit 8fb553c7da

View file

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