From 0354e6ce74d9bcb922d96a467da031c3ed3fc468 Mon Sep 17 00:00:00 2001 From: Harsh Shandilya Date: Mon, 13 Jul 2020 22:56:32 +0530 Subject: [PATCH] Fix typo in Rust post Signed-off-by: Harsh Shandilya --- content/posts/simple-tricks-for-faster-rust-programs.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/posts/simple-tricks-for-faster-rust-programs.md b/content/posts/simple-tricks-for-faster-rust-programs.md index 865566d..de756f5 100644 --- a/content/posts/simple-tricks-for-faster-rust-programs.md +++ b/content/posts/simple-tricks-for-faster-rust-programs.md @@ -24,7 +24,7 @@ lto = "fat" This makes the following changes to the `release` profile: -- Forces `rustc` to build the entire crate as a single unit, which lets LLVM makes smarter decisions about optimization thanks to all the code being together. +- Forces `rustc` to build the entire crate as a single unit, which lets LLVM make smarter decisions about optimization thanks to all the code being together. - Switches LTO to the `fat` variant. In `fat` mode, LTO will perform [optimization across the entire dependency graph](https://doc.rust-lang.org/rustc/codegen-options/index.html#lto) as opposed to the default option of doing it just to the local crate. ## Use a different memory allocator