Auto merge of #32603 - tshepang:capitalise, r=bluss

doc: first letter should be upper case
This commit is contained in:
bors 2016-03-30 06:18:59 -07:00
commit 102a5be712
1 changed files with 1 additions and 1 deletions

View File

@ -173,7 +173,7 @@ use vec::{self, Vec};
/// ```
/// use std::collections::BinaryHeap;
///
/// // type inference lets us omit an explicit type signature (which
/// // Type inference lets us omit an explicit type signature (which
/// // would be `BinaryHeap<i32>` in this example).
/// let mut heap = BinaryHeap::new();
///