From 44b7a53b9793cd82038e8eea858c91b7a39f31d4 Mon Sep 17 00:00:00 2001 From: Florian Hahn Date: Wed, 24 Feb 2016 19:55:49 +0100 Subject: [PATCH] Capitalize some occurences of Rust in documentation --- other-reprs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/other-reprs.md b/other-reprs.md index 2639c1d..b124f3f 100644 --- a/other-reprs.md +++ b/other-reprs.md @@ -57,7 +57,7 @@ These reprs have no effect on a struct. # repr(packed) -`repr(packed)` forces rust to strip any padding, and only align the type to a +`repr(packed)` forces Rust to strip any padding, and only align the type to a byte. This may improve the memory footprint, but will likely have other negative side-effects.