about summary refs log tree commit diff
path: root/src/libcollections
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-03-30 10:16:54 -0700
committerSteve Klabnik <steve@steveklabnik.com>2016-03-30 10:16:54 -0700
commit662e7af0f9b60ba35e19bc523e2283422dd01a8e (patch)
tree7d609d6de03a4c75de6b474b91af74adf8640ce7 /src/libcollections
parent6f885c3c15656c70aaff4ddfc8cb84d33f7115ac (diff)
parentcc762c29f388596180224be81c5d9a6df87c8740 (diff)
downloadrust-662e7af0f9b60ba35e19bc523e2283422dd01a8e.tar.gz
rust-662e7af0f9b60ba35e19bc523e2283422dd01a8e.zip
Rollup merge of #32603 - tshepang:capitalise, r=bluss
doc: first letter should be upper case
Diffstat (limited to 'src/libcollections')
-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();
 ///