From 064c21efd257dfd210e88b2a0a015f0767980853 Mon Sep 17 00:00:00 2001 From: Simonas Kazlauskas Date: Tue, 13 Jan 2015 20:24:48 +0200 Subject: [PATCH] Fix a typo in std::result documentation --- src/libcore/result.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcore/result.rs b/src/libcore/result.rs index f7421203336c..373291b031e8 100644 --- a/src/libcore/result.rs +++ b/src/libcore/result.rs @@ -119,7 +119,7 @@ //! drop(file); //! ``` //! -//! If you *do* write that in Rust, the compiler will by give you a +//! If you *do* write that in Rust, the compiler will give you a //! warning (by default, controlled by the `unused_must_use` lint). //! //! You might instead, if you don't want to handle the error, simply