about summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Grosse <999674+Storyyeller@users.noreply.github.com>2024-01-16 20:48:22 -0800
committerGitHub <noreply@github.com>2024-01-16 20:48:22 -0800
commitdb7125f008cfd72e8951c9a863178956e2cbacc3 (patch)
tree28d12940620b05732745aaaffc51f481cfc17564
parent6bf600bc98879bf1bf2ab0f3b3b37c965f5bdff6 (diff)
downloadrust-db7125f008cfd72e8951c9a863178956e2cbacc3.tar.gz
rust-db7125f008cfd72e8951c9a863178956e2cbacc3.zip
Fix typo in comments (in_place_collect)
-rw-r--r--library/alloc/src/vec/in_place_collect.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/library/alloc/src/vec/in_place_collect.rs b/library/alloc/src/vec/in_place_collect.rs
index 0a2280545da..ec5f32539f2 100644
--- a/library/alloc/src/vec/in_place_collect.rs
+++ b/library/alloc/src/vec/in_place_collect.rs
@@ -9,7 +9,7 @@
 //! or [`BinaryHeap<T>`], the adapters guarantee to consume enough items per step to make room
 //! for the results (represented by [`InPlaceIterable`]), provide transitive access to `source`
 //! (via [`SourceIter`]) and thus the underlying allocation.
-//! And finally there are alignment and size constriants to consider, this is currently ensured via
+//! And finally there are alignment and size constraints to consider, this is currently ensured via
 //! const eval instead of trait bounds in the specialized [`SpecFromIter`] implementation.
 //!
 //! [`BinaryHeap<T>`]: crate::collections::BinaryHeap