From e7be2c3e99d3bf7287906c4c35c6822784924b10 Mon Sep 17 00:00:00 2001 From: Jose Narvaez Date: Thu, 15 Oct 2015 14:56:03 +0100 Subject: [PATCH] Fixed comment. --- src/libarena/lib.rs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/libarena/lib.rs b/src/libarena/lib.rs index 0d599f736e6..7faaf5d332e 100644 --- a/src/libarena/lib.rs +++ b/src/libarena/lib.rs @@ -390,8 +390,9 @@ struct TypedArenaChunk { next: *mut TypedArenaChunk, /// The number of elements that this chunk can hold. - // Objects follow here, suitably aligned. capacity: usize, + + // Objects follow here, suitably aligned. } fn calculate_size(capacity: usize) -> usize {