From 79f56d54379e5b49e79e83174fc91c019bcbdf88 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Jakub=20Ber=C3=A1nek?= Date: Thu, 4 Sep 2025 17:04:27 +0200 Subject: [PATCH] Fix typo Co-authored-by: Nicholas Nethercote --- src/doc/src/guide/build-performance.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/doc/src/guide/build-performance.md b/src/doc/src/guide/build-performance.md index 2852feac8..808c05b8f 100644 --- a/src/doc/src/guide/build-performance.md +++ b/src/doc/src/guide/build-performance.md @@ -7,7 +7,7 @@ Compilation of Rust crates can sometimes be rather slow, due to various reasons This guide focuses on the first approach. -Below, you can find several methods that can be used to optimize build performance. It is important to nore that their effect varies a lot based on the compiled crate, and in some cases they can actually make compilation slower. You should always measure build performance on your crate(s) to determine if a given method described here is effective for your crate. +Below, you can find several methods that can be used to optimize build performance. It is important to note that their effect varies a lot based on the compiled crate, and in some cases they can actually make compilation slower. You should always measure build performance on your crate(s) to determine if a given method described here is effective for your crate. Note that some of these approaches currently require using the nightly toolchain.