about summary refs log tree commit diff
path: root/src/libcollections/vec_map.rs
diff options
context:
space:
mode:
authorTibor Benke <ihrwein@gmail.com>2015-04-10 22:51:05 +0200
committerTibor Benke <ihrwein@gmail.com>2015-04-10 22:51:05 +0200
commit520ee34a66326638ddcb184ffd897ba492f99ba9 (patch)
treea1df7b76ec4fbc7afe7db4cd905055ef8d974378 /src/libcollections/vec_map.rs
parentc897ac04e2ebda378fd9e38f6ec0878ae3a2baf7 (diff)
downloadrust-520ee34a66326638ddcb184ffd897ba492f99ba9.tar.gz
rust-520ee34a66326638ddcb184ffd897ba492f99ba9.zip
Fix some typos
Signed-off-by: Tibor Benke <ihrwein@gmail.com>
Diffstat (limited to 'src/libcollections/vec_map.rs')
-rw-r--r--src/libcollections/vec_map.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libcollections/vec_map.rs b/src/libcollections/vec_map.rs
index 8900c795045..3d9d8cf51ec 100644
--- a/src/libcollections/vec_map.rs
+++ b/src/libcollections/vec_map.rs
@@ -576,7 +576,7 @@ impl<V> VecMap<V> {
         }
     }
 
-    /// Inserts a key-value pair from the map. If the key already had a value
+    /// Inserts a key-value pair into the map. If the key already had a value
     /// present in the map, that value is returned. Otherwise, `None` is returned.
     ///
     /// # Examples