From bbd7c4139163a62940d111c167bda84c3427a1e7 Mon Sep 17 00:00:00 2001 From: KaiserY Date: Mon, 17 Aug 2020 10:05:56 +0800 Subject: [PATCH] update ch14-02 close #460 --- src/ch14-02-publishing-to-crates-io.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/ch14-02-publishing-to-crates-io.md b/src/ch14-02-publishing-to-crates-io.md index c710388..0f58116 100644 --- a/src/ch14-02-publishing-to-crates-io.md +++ b/src/ch14-02-publishing-to-crates-io.md @@ -16,7 +16,7 @@ Rust 和 Cargo 有一些帮助它人更方便找到和使用你发布的包的 文件名: src/lib.rs ````rust,ignore -/// 将给定的数字加一 +/// Adds one to the number given. /// /// # Examples /// @@ -77,10 +77,10 @@ test result: ok. 1 passed; 0 failed; 0 ignored; 0 measured; 0 filtered out ```rust,ignore //! # My Crate //! -//! `my_crate` 是一个使得特定计算更方便的 -//! 工具集合 +//! `my_crate` is a collection of utilities to make performing certain +//! calculations more convenient. -/// 将给定的数字加一。 +/// Adds one to the number given. // --snip-- ```