aboutsummaryrefslogtreecommitdiff
path: root/src/utils/vec_map.rs
diff options
context:
space:
mode:
authorZeyla Hellyer <[email protected]>2018-06-17 15:53:09 -0700
committerZeyla Hellyer <[email protected]>2018-06-17 15:53:09 -0700
commit6ddfef8359a619be9a49be7b33b466724eed0ecb (patch)
tree5fb9c070b1650b95aa6b5713b3630fc253095275 /src/utils/vec_map.rs
parentFix Args test (diff)
downloadserenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.tar.xz
serenity-6ddfef8359a619be9a49be7b33b466724eed0ecb.zip
Remove extraneous spaces at the end of lines
Diffstat (limited to 'src/utils/vec_map.rs')
-rw-r--r--src/utils/vec_map.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/utils/vec_map.rs b/src/utils/vec_map.rs
index 70e65f5..d02d659 100644
--- a/src/utils/vec_map.rs
+++ b/src/utils/vec_map.rs
@@ -2,7 +2,7 @@
// shamelessly copied from https://github.com/hyperium/hyper/blob/master/src/header/internals/vec_map.rs
/// Like `HashMap` but solely uses a vector instead.
-///
+///
/// note: This is for internal use.
#[derive(Clone, Debug, Default)]
pub struct VecMap<K, V>(Vec<(K, V)>);
@@ -117,4 +117,4 @@ impl<'a, K, V> OccupiedEntry<'a, K, V> {
pub fn into_mut(self) -> &'a mut V {
&mut self.vec[self.pos].1
}
-} \ No newline at end of file
+}