Skip to content

Commit

Permalink
Fix description based on review
Browse files Browse the repository at this point in the history
  • Loading branch information
stephaneyfx committed Dec 11, 2019
1 parent 1a26df7 commit cb1cc11
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/liballoc/boxed.rs
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@
//!
//! So long as `T: Sized`, a `Box<T>` is guaranteed to be represented as a
//! single pointer and is also ABI-compatible with C pointers (i.e. the C type
//! `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
//! `Box<T>` to C code by using `Box<T>` as the type on the Rust side, and
//! `T*` as the corresponding type on the C side. As an example, consider this
//! C header which declares functions that create and destroy some kind of
Expand Down

0 comments on commit cb1cc11

Please sign in to comment.