From 2a92e3d65e560a290d0934052b695c6c69c1388f Mon Sep 17 00:00:00 2001 From: Mujeebullah Kalwar Date: Thu, 20 Jul 2023 02:40:36 +0500 Subject: [PATCH] Typo Fixed `placefolder` to `placeholder` --- en/src/formatted-output/debug-display.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/en/src/formatted-output/debug-display.md b/en/src/formatted-output/debug-display.md index c74a122..686dfc9 100644 --- a/en/src/formatted-output/debug-display.md +++ b/en/src/formatted-output/debug-display.md @@ -77,7 +77,7 @@ Yeah, `Debug` is simple and easy to use. But sometimes we want to customize the Unlike `Debug`, there is no way to derive the implementation of the `Display` trait, we have to manually implement it. -Another thing to note: the placefolder for `Display` is `{}` not `{:?}`. +Another thing to note: the placeholder for `Display` is `{}` not `{:?}`. 4. 🌟🌟 ```rust,editable