From f5f46ff42e0b05eeb83a6e579711383ea3cf23e9 Mon Sep 17 00:00:00 2001 From: johnthagen Date: Tue, 25 Jun 2024 19:40:01 -0400 Subject: [PATCH] Expand alert --- README.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 0f11898..b0859ee 100644 --- a/README.md +++ b/README.md @@ -65,11 +65,10 @@ which optimizes the binary for **speed**. To instruct Cargo to optimize for mini opt-level = "z" # Optimize for size. ``` -Note that in some cases the `"s"` level may result in a smaller binary than `"z"`, as explained in -the -[`opt-level` documentation](https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level): - -> [!TIP] +> [!NOTE] +> In some cases the `"s"` level may result in a smaller binary than `"z"`, as explained in the +> [`opt-level` documentation](https://doc.rust-lang.org/cargo/reference/profiles.html#opt-level): +> > It is recommended to experiment with different levels to find the right balance for your project. > There may be surprising results, such as ... the `"s"` and `"z"` levels not being necessarily > smaller.