From e501d8419655b6fe46e5686a4da8226cb70bdd6c Mon Sep 17 00:00:00 2001 From: Ralf Biedert Date: Thu, 24 Aug 2023 18:43:57 +0200 Subject: [PATCH] Forgot backticks. --- content/_index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/_index.md b/content/_index.md index 3aa71c7..a5c1df8 100644 --- a/content/_index.md +++ b/content/_index.md @@ -6106,7 +6106,7 @@ Each argument designator in format macro is either empty `{}`, `{argument}`, or |---------|-------------| | `println!("{}", x)` | Print `x` using `Display`{{ std(page="std/fmt/trait.Display.html") }} on std. out and append new line. {{ edition(ed="'15") }} {{ deprecated() }} | | `println!("{x}")` | Same, but use variable `x` from scope. {{ edition(ed="'21") }} | -| `format!("{a:.3} {b:?}")` | Convert `a` with 3 digits, add space, b with `Debug` {{ std(page="std/fmt/trait.Debug.html") }}, return `String`. {{ edition(ed="'21") }} | +| `format!("{a:.3} {b:?}")` | Convert `a` with 3 digits, add space, `b` with `Debug` {{ std(page="std/fmt/trait.Debug.html") }}, return `String`. {{ edition(ed="'21") }} |