From b7a3d46efa1f5982f7f86277eb7dbe9f8bc066b0 Mon Sep 17 00:00:00 2001 From: Stjepan Glavina Date: Wed, 22 Mar 2017 18:42:42 +0100 Subject: [PATCH] Add 'the' before 'start'/'end' --- src/libcollections/range.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/libcollections/range.rs b/src/libcollections/range.rs index d10ca087f93..06d89a6a70b 100644 --- a/src/libcollections/range.rs +++ b/src/libcollections/range.rs @@ -22,7 +22,7 @@ use Bound::{self, Excluded, Included, Unbounded}; pub trait RangeArgument { /// Start index bound. /// - /// Returns start value as a `Bound`. + /// Returns the start value as a `Bound`. /// /// # Examples /// @@ -44,7 +44,7 @@ pub trait RangeArgument { /// End index bound. /// - /// Returns end value as a `Bound`. + /// Returns the end value as a `Bound`. /// /// # Examples ///