From c266b8b98c763984c6d1183e3518379c0cf2751f Mon Sep 17 00:00:00 2001 From: Christopher Durham Date: Wed, 15 Apr 2020 15:50:31 -0400 Subject: [PATCH] emphasize *no trailing padding* --- src/libcore/alloc/layout.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/alloc/layout.rs b/src/libcore/alloc/layout.rs index 98f9054588a..ec3a42469bc 100644 --- a/src/libcore/alloc/layout.rs +++ b/src/libcore/alloc/layout.rs @@ -258,7 +258,7 @@ impl Layout { /// Creates a layout describing the record for `self` followed by /// `next`, including any necessary padding to ensure that `next` - /// will be properly aligned, but no trailing padding. Note that + /// will be properly aligned, but *no trailing padding*. Note that /// the resulting layout will satisfy the alignment properties of /// both `self` and `next`, in order to ensure field alignment. ///