about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorSteve Klabnik <steve@steveklabnik.com>2016-02-04 16:39:06 -0500
committerSteve Klabnik <steve@steveklabnik.com>2016-02-04 16:39:06 -0500
commit96d866a19db6ff21bcd0549f455437689e4237e2 (patch)
treef4598b270c097966c604567bdfbda57c42a73546 /src/libstd
parent09e62bac0f010f406d2f2b823812ebc5eab06892 (diff)
parent9721752d35123b4cd7190abdf1e894b1a9bfadf3 (diff)
downloadrust-96d866a19db6ff21bcd0549f455437689e4237e2.tar.gz
rust-96d866a19db6ff21bcd0549f455437689e4237e2.zip
Rollup merge of #31415 - tshepang:2-space-indent, r=steveklabnik
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/map.rs6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index 7ce4aa07b50..f8efada9f6c 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -282,9 +282,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