From 887f0bfeb7781833c2a3f957ead26cfa8cd7a5f7 Mon Sep 17 00:00:00 2001 From: Adrien LUDWIG <42720099+Adrien-LUDWIG@users.noreply.github.com> Date: Sun, 15 Feb 2026 19:13:29 +0100 Subject: [PATCH] 1.2.2 Display: Fix typo in bonus instructions (before -> after) From context and from the [previous PR](https://github.com/rust-lang/rust-by-example/commit/7da5b73222a5b6125dcddef05f23985d0ebe0186) (which removed the space after the operator), we can see this is a typo. :wink: --- src/hello/print/print_display.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/hello/print/print_display.md b/src/hello/print/print_display.md index 18e4104f9b..77008ad7b1 100644 --- a/src/hello/print/print_display.md +++ b/src/hello/print/print_display.md @@ -118,7 +118,7 @@ Display: 4.7 -2.3i Debug: Complex { real: 4.7, imag: -2.3 } ``` -Bonus: Add a space before the `+`/`-` signs. +Bonus: Add a space after the `+`/`-` signs. Hints in case you get stuck: