File tree 3 files changed +3
-3
lines changed
3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ use core::ptr::NonNull;
12
12
/// builder. This is tricky in Rust. This type behaves similar to the regular
13
13
/// `Box` type except that it ensure the same layout is used for the (explicit)
14
14
/// allocation and the (implicit) deallocation of memory. Otherwise, I didn't
15
- /// found any way to figure out the right layout for a DST. Miri always reported
15
+ /// find any way to figure out the right layout for a DST. Miri always reported
16
16
/// issues that the deallocation used a wrong layout.
17
17
///
18
18
/// Technically, I'm certain this code is memory safe. But with this type, I
Original file line number Diff line number Diff line change 3
3
mod boxed_dst;
4
4
mod information;
5
5
6
- // This must by public to support external people to create boxed DSTs.
6
+ // This must be public to support external people to create boxed DSTs.
7
7
pub use boxed_dst:: BoxedDst ;
8
8
pub use information:: InformationBuilder ;
9
9
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ use ptr_meta::Pointee;
5
5
6
6
/// A trait to abstract over all sized and unsized tags (DSTs). For sized tags,
7
7
/// this trait does not much. For DSTs, a [`TagTrait::dst_size`] implementation
8
- /// must me provided, which returns the right size hint for the dynamically
8
+ /// must be provided, which returns the right size hint for the dynamically
9
9
/// sized portion of the struct.
10
10
///
11
11
/// # Trivia
You can’t perform that action at this time.
0 commit comments