Skip to content

Commit cb1cc11

Browse files
committed
Fix description based on review
1 parent 1a26df7 commit cb1cc11

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/liballoc/boxed.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@
6565
//!
6666
//! So long as `T: Sized`, a `Box<T>` is guaranteed to be represented as a
6767
//! single pointer and is also ABI-compatible with C pointers (i.e. the C type
68-
//! `T*`). This means that you have Rust code which passes ownership of a
68+
//! `T*`). This means that you can have Rust code which passes ownership of a
6969
//! `Box<T>` to C code by using `Box<T>` as the type on the Rust side, and
7070
//! `T*` as the corresponding type on the C side. As an example, consider this
7171
//! C header which declares functions that create and destroy some kind of

0 commit comments

Comments
 (0)