]> git.lizzy.rs Git - rust.git/blobdiff - library/core/src/primitive_docs.rs
Fix naming format of IEEE 754 standard
[rust.git] / library / core / src / primitive_docs.rs
index 2b2ef64fdb1c3f31cacc27592ee7fc8f43d5d108..242f44ade8a2d121a5ae775d1952e7594204b608 100644 (file)
@@ -1223,7 +1223,7 @@ mod prim_usize {}
 #[doc(alias = "&")]
 #[doc(alias = "&mut")]
 //
-/// References, both shared and mutable.
+/// References, `&T` and `&mut T`.
 ///
 /// A reference represents a borrow of some owned value. You can get one by using the `&` or `&mut`
 /// operators on a value, or by using a [`ref`](../std/keyword.ref.html) or