diff options
| author | Stjepan Glavina <stjepang@gmail.com> | 2017-03-22 18:42:42 +0100 |
|---|---|---|
| committer | Stjepan Glavina <stjepang@gmail.com> | 2017-03-22 18:42:42 +0100 |
| commit | b7a3d46efa1f5982f7f86277eb7dbe9f8bc066b0 (patch) | |
| tree | dc5995e76840c73c84d24a29194f02efff65b07f | |
| parent | d6da1d9b46f7090b18be357bef8d55ffa3673d2f (diff) | |
| download | rust-b7a3d46efa1f5982f7f86277eb7dbe9f8bc066b0.tar.gz rust-b7a3d46efa1f5982f7f86277eb7dbe9f8bc066b0.zip | |
Add 'the' before 'start'/'end'
| -rw-r--r-- | src/libcollections/range.rs | 4 |
1 files 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<T: ?Sized> { /// Start index bound. /// - /// Returns start value as a `Bound`. + /// Returns the start value as a `Bound`. /// /// # Examples /// @@ -44,7 +44,7 @@ pub trait RangeArgument<T: ?Sized> { /// End index bound. /// - /// Returns end value as a `Bound`. + /// Returns the end value as a `Bound`. /// /// # Examples /// |
