From 28af2aa411cc418025c8d04fd838db5cda6a792b Mon Sep 17 00:00:00 2001 From: Steven Fackler Date: Sat, 24 Jan 2015 11:22:12 -0800 Subject: [PATCH] More fixes for bad sed --- phf/src/map.rs | 2 +- phf/src/ordered_map.rs | 2 +- phf/src/ordered_set.rs | 2 +- phf/src/set.rs | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/phf/src/map.rs b/phf/src/map.rs index fe737aea..8191a189 100644 --- a/phf/src/map.rs +++ b/phf/src/map.rs @@ -86,7 +86,7 @@ impl Map { /// Returns a reference to the map's isizeernal static instance of the given /// key. /// - /// This can be useful for isizeerning schemes. + /// This can be useful for interning schemes. pub fn get_key(&self, key: &T) -> Option<&K> where T: Eq + PhfHash + BorrowFrom { self.get_entry(key).map(|e| e.0) } diff --git a/phf/src/ordered_map.rs b/phf/src/ordered_map.rs index 9d3d88ff..042309c5 100644 --- a/phf/src/ordered_map.rs +++ b/phf/src/ordered_map.rs @@ -88,7 +88,7 @@ impl OrderedMap { /// Returns a reference to the map's isizeernal static instance of the given /// key. /// - /// This can be useful for isizeerning schemes. + /// This can be useful for interning schemes. pub fn get_key(&self, key: &T) -> Option<&K> where T: Eq + PhfHash + BorrowFrom { self.get_entry(key).map(|e| e.0) } diff --git a/phf/src/ordered_set.rs b/phf/src/ordered_set.rs index 3c4d53a3..9bf6a80f 100644 --- a/phf/src/ordered_set.rs +++ b/phf/src/ordered_set.rs @@ -66,7 +66,7 @@ impl OrderedSet { /// Returns a reference to the set's isizeernal static instance of the given /// key. /// - /// This can be useful for isizeerning schemes. + /// This can be useful for interning schemes. pub fn get_key(&self, key: &U) -> Option<&T> where U: Eq + PhfHash + BorrowFrom { self.map.get_key(key) } diff --git a/phf/src/set.rs b/phf/src/set.rs index 485996af..c1907ada 100644 --- a/phf/src/set.rs +++ b/phf/src/set.rs @@ -64,7 +64,7 @@ impl Set { /// Returns a reference to the set's isizeernal static instance of the given /// key. /// - /// This can be useful for isizeerning schemes. + /// This can be useful for interning schemes. pub fn get_key(&self, key: &U) -> Option<&T> where U: Eq + PhfHash + BorrowFrom { self.map.get_key(key) }