From a08fe955eb21340eedb9cba473ce73083d2eee8d Mon Sep 17 00:00:00 2001 From: r3c0d3x Date: Sat, 11 Feb 2017 12:26:08 -0500 Subject: [PATCH] Fix fmt::Display vs fmt::Debug URL --- docs/HACKING_QUICKSTART.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/HACKING_QUICKSTART.md b/docs/HACKING_QUICKSTART.md index b97d6a5ff4b..87cd68cad5c 100644 --- a/docs/HACKING_QUICKSTART.md +++ b/docs/HACKING_QUICKSTART.md @@ -177,7 +177,7 @@ Use `RUST_BACKTRACE=1` to dump the backtrace when Servo panics. ### println!() -You will want to add your own logs. Luckily, many structures [implement the `fmt::Debug` trait](https://doc.rust-lang.org/std/fmt/#fmt::display-vs-fmt::debug), so adding: +You will want to add your own logs. Luckily, many structures [implement the `fmt::Debug` trait](https://doc.rust-lang.org/std/fmt/#fmtdisplay-vs-fmtdebug), so adding: ``` rust println!("foobar: {:?}", foobar)