We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1a26df7 commit cb1cc11Copy full SHA for cb1cc11
src/liballoc/boxed.rs
@@ -65,7 +65,7 @@
65
//!
66
//! So long as `T: Sized`, a `Box<T>` is guaranteed to be represented as a
67
//! 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
+//! `T*`). This means that you can have Rust code which passes ownership of a
69
//! `Box<T>` to C code by using `Box<T>` as the type on the Rust side, and
70
//! `T*` as the corresponding type on the C side. As an example, consider this
71
//! C header which declares functions that create and destroy some kind of
0 commit comments