From cc762c29f388596180224be81c5d9a6df87c8740 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Tue, 29 Mar 2016 00:56:11 +0200 Subject: [PATCH] doc: first letter should be upper case --- src/libcollections/binary_heap.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/libcollections/binary_heap.rs b/src/libcollections/binary_heap.rs index ba317334cfa0b..cda30c092dc80 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` in this example). /// let mut heap = BinaryHeap::new(); ///