From a8ffdd47d7d2d151501bff03bee460736ba2d6cb Mon Sep 17 00:00:00 2001 From: David Sanders Date: Mon, 10 Dec 2018 09:23:40 -0800 Subject: [PATCH] I added a space in the Display fmt for Complex --- 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 5bf4460514..dc86ff2edf 100644 --- a/src/hello/print/print_display.md +++ b/src/hello/print/print_display.md @@ -112,7 +112,7 @@ guide to add a Complex struct to the example. When printed in the same way, the output should be: ```txt -Display: 3.3 +7.2i +Display: 3.3 + 7.2i Debug: Complex { real: 3.3, imag: 7.2 } ```