about summary refs log tree commit diff
path: root/src/libcore/pin.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/libcore/pin.rs')
-rw-r--r--src/libcore/pin.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcore/pin.rs b/src/libcore/pin.rs
index 308dd9c79fa..aa5155536c9 100644
--- a/src/libcore/pin.rs
+++ b/src/libcore/pin.rs
@@ -9,7 +9,7 @@
 //!
 //! In order to prevent objects from moving, they must be pinned
 //! by wrapping a pointer to the data in the [`Pin`] type. A pointer wrapped
-//! in a `Pin` is otherwise equivalent to its normal version, e.g. `Pin<Box<T>>`
+//! in a `Pin` is otherwise equivalent to its normal version, e.g., `Pin<Box<T>>`
 //! and `Box<T>` work the same way except that the first is pinning the value
 //! of `T` in place.
 //!