Przeglądaj źródła

hosts: fix minor typo

lunar-mining 2 lat temu
rodzic
commit
519353ae42
1 zmienionych plików z 3 dodań i 3 usunięć
  1. 3 3
      src/net/hosts.rs

+ 3 - 3
src/net/hosts.rs

@@ -197,7 +197,7 @@ impl Hosts {
 
 
             // Sort the list by last_seen.
             // Sort the list by last_seen.
             greylist.sort_unstable_by_key(|entry| entry.1);
             greylist.sort_unstable_by_key(|entry| entry.1);
-            
+
             debug!(target: "net::hosts::greylist_store()", "Sorted greylist: {:?}", greylist)
             debug!(target: "net::hosts::greylist_store()", "Sorted greylist: {:?}", greylist)
         }
         }
 
 
@@ -222,8 +222,8 @@ impl Hosts {
 
 
         // Sort the list by last_seen.
         // Sort the list by last_seen.
         whitelist.sort_unstable_by_key(|entry| entry.1);
         whitelist.sort_unstable_by_key(|entry| entry.1);
-        
-        debug!(target: "net::hosts::whitelistt_store()", "Sorted whitelist: {:?}", whitelist);
+
+        debug!(target: "net::hosts::whitelist_store()", "Sorted whitelist: {:?}", whitelist);
         debug!(target: "net::hosts::whitelist_store()", "hosts::whitelist_store() [END]");
         debug!(target: "net::hosts::whitelist_store()", "hosts::whitelist_store() [END]");
     }
     }