about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorManish Goregaokar <manishsmail@gmail.com>2015-02-23 14:44:17 +0530
committerManish Goregaokar <manishsmail@gmail.com>2015-02-23 23:28:46 +0530
commitaf81ec2f43aeac2de5efc7e0d1c6e4589b57f7f8 (patch)
tree14054acb9e94ba81bccbf489de2d3d7a1194976b /src/libstd
parent0fab2b95354f519e89e07d4e4d723c24372e75fd (diff)
parent1597f915c55f5a5db3b76d9859ba8618c83b8c98 (diff)
downloadrust-af81ec2f43aeac2de5efc7e0d1c6e4589b57f7f8.tar.gz
rust-af81ec2f43aeac2de5efc7e0d1c6e4589b57f7f8.zip
Rollup merge of #22559 - kmcallister:borrowck-readme, r=nikomatsakis
 And minor fixes to other docs.

r? @nikomatsakis
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/collections/hash/map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/collections/hash/map.rs b/src/libstd/collections/hash/map.rs
index f5d2b8aed29..df2fb538c0a 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -203,7 +203,7 @@ fn test_resize_policy() {
 // produces identical results to a linear naive reinsertion from the same
 // element.
 //
-// FIXME(Gankro, pczarn): review the proof and put it all in a separate doc.rs
+// FIXME(Gankro, pczarn): review the proof and put it all in a separate README.md
 
 /// A hash map implementation which uses linear probing with Robin
 /// Hood bucket stealing.