From 9721752d35123b4cd7190abdf1e894b1a9bfadf3 Mon Sep 17 00:00:00 2001 From: Tshepang Lekhonkhobe Date: Thu, 4 Feb 2016 23:31:22 +0200 Subject: [PATCH] doc: Rust indents are 4-space wide by convention --- src/libstd/collections/hash/map.rs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs index 173214eda44c7..3477c182676bd 100644 --- a/src/libstd/collections/hash/map.rs +++ b/src/libstd/collections/hash/map.rs @@ -279,9 +279,9 @@ fn test_resize_policy() { /// let mut player_stats = HashMap::new(); /// /// fn random_stat_buff() -> u8 { -/// // could actually return some random value here - let's just return -/// // some fixed value for now -/// 42 +/// // could actually return some random value here - let's just return +/// // some fixed value for now +/// 42 /// } /// /// // insert a key only if it doesn't already exist