about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorbors <bors@rust-lang.org>2016-03-30 06:18:59 -0700
committerbors <bors@rust-lang.org>2016-03-30 06:18:59 -0700
commit102a5be7126ef8f1e79086b98d1d9faf47ba8ece (patch)
tree34dda9a594da212cdd2886daf31d8b1a3434e774 /src
parent70b8b9487a94c5b9b1401007b040c584d9349582 (diff)
parentcc762c29f388596180224be81c5d9a6df87c8740 (diff)
downloadrust-102a5be7126ef8f1e79086b98d1d9faf47ba8ece.tar.gz
rust-102a5be7126ef8f1e79086b98d1d9faf47ba8ece.zip
Auto merge of #32603 - tshepang:capitalise, r=bluss
doc: first letter should be upper case
Diffstat (limited to 'src')
-rw-r--r--src/libcollections/binary_heap.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/binary_heap.rs b/src/libcollections/binary_heap.rs
index 2988a636095..188fd3f9d63 100644
--- a/src/libcollections/binary_heap.rs
+++ b/src/libcollections/binary_heap.rs
@@ -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();
 ///