about summary refs log tree commit diff
diff options
context:
space:
mode:
authordacian <pascu.dacian@gmail.com>2024-10-06 20:37:10 +0300
committerdacian <pascu.dacian@gmail.com>2024-10-06 20:37:10 +0300
commit3b2be4457da8521ab0a8a9cd7e11b1c24b0de191 (patch)
tree86fd6fca515a1b72f15ae2c0962b855a6f4c0a73
parent373971abe48287f47ead6304b19279f34b6fcce5 (diff)
downloadrust-3b2be4457da8521ab0a8a9cd7e11b1c24b0de191.tar.gz
rust-3b2be4457da8521ab0a8a9cd7e11b1c24b0de191.zip
grammar fix
-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 fb0aa5398a5..a2ab39caade 100644
--- a/library/core/src/intrinsics/mir.rs
+++ b/library/core/src/intrinsics/mir.rs
@@ -213,7 +213,7 @@
 //!  - All other locals need to be declared with `let` somewhere and then can be accessed by name.
 //!
 //! #### Places
-//!  - Locals implicit convert to places.
+//!  - Locals implicitly convert to places.
 //!  - Field accesses, derefs, and indexing work normally.
 //!  - Fields in variants can be accessed via the [`Variant`] and [`Field`] associated functions,
 //!    see their documentation for details.