about summary refs log tree commit diff
path: root/src/liblog
diff options
context:
space:
mode:
authorJoseph Crail <jbcrail@gmail.com>2014-07-02 21:27:07 -0400
committerAlex Crichton <alex@alexcrichton.com>2014-07-03 12:54:51 -0700
commite3fa23bcb64064d50c2a9e3b5870bc82081359d9 (patch)
tree55c7f812cc8393b3e2ac7deef52886e811c45ff9 /src/liblog
parent8297edd54976d06f4753bc18684614516d156243 (diff)
downloadrust-e3fa23bcb64064d50c2a9e3b5870bc82081359d9.tar.gz
rust-e3fa23bcb64064d50c2a9e3b5870bc82081359d9.zip
Fix spelling errors.
Diffstat (limited to 'src/liblog')
-rw-r--r--src/liblog/lib.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/liblog/lib.rs b/src/liblog/lib.rs
index ba102a85c1b..17349f41b98 100644
--- a/src/liblog/lib.rs
+++ b/src/liblog/lib.rs
@@ -288,7 +288,7 @@ pub fn mod_enabled(level: u32, module: &str) -> bool {
     unsafe { INIT.doit(init); }
 
     // It's possible for many threads are in this function, only one of them
-    // will peform the global initialization, but all of them will need to check
+    // will perform the global initialization, but all of them will need to check
     // again to whether they should really be here or not. Hence, despite this
     // check being expanded manually in the logging macro, this function checks
     // the log level again.