about summary refs log tree commit diff
path: root/src/libstd/collections/hash/map.rs
diff options
context:
space:
mode:
authorKeegan McAllister <mcallister.keegan@gmail.com>2015-02-18 19:34:55 -0800
committerKeegan McAllister <mcallister.keegan@gmail.com>2015-02-18 19:54:45 -0800
commitf051e1323807b93fcb0d128a29dcdd0a0349bcf8 (patch)
treea2f037420639c0049a78e2397efa3989aab2ff1c /src/libstd/collections/hash/map.rs
parentac6cab088791c497726ccdec24f6f97e709d5a62 (diff)
downloadrust-f051e1323807b93fcb0d128a29dcdd0a0349bcf8.tar.gz
rust-f051e1323807b93fcb0d128a29dcdd0a0349bcf8.zip
Fix references to doc.rs throughout the code
Diffstat (limited to 'src/libstd/collections/hash/map.rs')
-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 1b9f8b99017..9f72199c1b3 100644
--- a/src/libstd/collections/hash/map.rs
+++ b/src/libstd/collections/hash/map.rs
@@ -204,7 +204,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.