summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndy Wang <cbeuw.andy@gmail.com>2023-05-15 12:08:16 +0200
committerAndy Wang <cbeuw.andy@gmail.com>2023-05-15 12:08:16 +0200
commit3d938ddb39467614301e9843af29bbfe843cc7ad (patch)
tree3f2a833fd60383139d8b7a2c634f9a4c89618efd
parent1bd6e168b24236fdb0b848537861a4b53feb4221 (diff)
downloadrust-3d938ddb39467614301e9843af29bbfe843cc7ad.tar.gz
Documentation
-rw-r--r--library/core/src/intrinsics/mir.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/core/src/intrinsics/mir.rs b/library/core/src/intrinsics/mir.rs
index b1a112849d8..5944a0de1a4 100644
--- a/library/core/src/intrinsics/mir.rs
+++ b/library/core/src/intrinsics/mir.rs
@@ -228,7 +228,7 @@
//!
//! - Operands implicitly convert to `Use` rvalues.
//! - `&`, `&mut`, `addr_of!`, and `addr_of_mut!` all work to create their associated rvalue.
-//! - [`Discriminant`] and [`Len`] have associated functions.
+//! - [`Discriminant`], [`Len`], and [`CopyForDeref`] have associated functions.
//! - Unary and binary operations use their normal Rust syntax - `a * b`, `!c`, etc.
//! - The binary operation `Offset` can be created via [`Offset`].
//! - Checked binary operations are represented by wrapping the associated binop in [`Checked`].