From 13ac0a65965d8357a943349432aa1ef60955fac2 Mon Sep 17 00:00:00 2001 From: sceext2 Date: Tue, 4 Oct 2016 11:13:01 +0800 Subject: [PATCH] fix testing/threearchtest.md markdown quote --- testing/threearchtest.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/testing/threearchtest.md b/testing/threearchtest.md index debb2fe..7603229 100644 --- a/testing/threearchtest.md +++ b/testing/threearchtest.md @@ -227,7 +227,7 @@ Rust 对文档的哲学,是不要单独写文档,一是代码本身是文档 比如,我们给上面库加点文档: -```rust +``````rust //! The `adder` crate provides functions that add numbers to other numbers. //! //! # Examples @@ -259,7 +259,7 @@ mod tests { assert_eq!(4, add_two(2)); } } -``` +`````` 运行 `cargo test`,结果如下: