diff options
author | bors-servo <lbergstrom+bors@mozilla.com> | 2016-09-07 01:29:37 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-09-07 01:29:37 -0500 |
commit | bba3eefde86d7716c35b6dcb6f45c9d42fbe758f (patch) | |
tree | c840ecf136ab4de17413b26b95a945c83ccaa1b1 | |
parent | 9a1af3564c0072274543ac5f1ca260d5fe79227b (diff) | |
parent | 32f6e965deab802957d5746b1467952503b394e8 (diff) | |
download | servo-bba3eefde86d7716c35b6dcb6f45c9d42fbe758f.tar.gz servo-bba3eefde86d7716c35b6dcb6f45c9d42fbe758f.zip |
Auto merge of #13182 - paulrouget:fixDoc, r=KiChjang
Fix println section
<!-- Reviewable:start -->
This change is [<img src="https://reviewable.io/review_button.svg" height="34" align="absmiddle" alt="Reviewable"/>](https://reviewable.io/reviews/servo/servo/13182)
<!-- Reviewable:end -->
-rw-r--r-- | docs/HACKING_QUICKSTART.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/HACKING_QUICKSTART.md b/docs/HACKING_QUICKSTART.md index 468a6c33cb4..e0d96b547ea 100644 --- a/docs/HACKING_QUICKSTART.md +++ b/docs/HACKING_QUICKSTART.md @@ -174,7 +174,7 @@ You will want to add your own logs. Luckily, many structures [implement the `fmt println!("foobar: {:?}", foobar) ``` -usually just works. If it doesn't, maybe foobar's properties implement the right trait. +usually just works. If it doesn't, maybe some of foobar's properties don't implement the right trait. ### Debugger |