aboutsummaryrefslogtreecommitdiffstats
path: root/docs
diff options
context:
space:
mode:
authorr3c0d3x <r3c0d3x@users.noreply.github.com>2017-02-11 12:26:08 -0500
committerGitHub <noreply@github.com>2017-02-11 12:26:08 -0500
commita08fe955eb21340eedb9cba473ce73083d2eee8d (patch)
tree55b16ceb5a62837b98587514f0a74a4c39b4ee58 /docs
parent1ab3c34dd937ab36ce6bf56e70f09f823c240fe0 (diff)
downloadservo-a08fe955eb21340eedb9cba473ce73083d2eee8d.tar.gz
servo-a08fe955eb21340eedb9cba473ce73083d2eee8d.zip
Fix fmt::Display vs fmt::Debug URL
Diffstat (limited to 'docs')
-rw-r--r--docs/HACKING_QUICKSTART.md2
1 files changed, 1 insertions, 1 deletions
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)