about summary refs log tree commit diff
path: root/src/liblog
diff options
context:
space:
mode:
authorJose Narvaez <jnarvaez@zendesk.com>2015-10-13 10:46:41 +0100
committerJose Narvaez <jnarvaez@zendesk.com>2015-10-13 10:46:41 +0100
commit94946db60d84d1a6a5d45dc7be7e778882637367 (patch)
tree1ec10afca93ea1f53d6bc81f3430fb0cfc6540c1 /src/liblog
parent5943af31e7adbb6a713755dbfd4f60158d12b91e (diff)
downloadrust-94946db60d84d1a6a5d45dc7be7e778882637367.tar.gz
rust-94946db60d84d1a6a5d45dc7be7e778882637367.zip
Manually alligned comments.
Diffstat (limited to 'src/liblog')
-rw-r--r--src/liblog/directive.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/liblog/directive.rs b/src/liblog/directive.rs
index 82e93fa9e3a..12a5c131170 100644
--- a/src/liblog/directive.rs
+++ b/src/liblog/directive.rs
@@ -56,8 +56,8 @@ pub fn parse_logging_spec(spec: &str) -> (Vec<LogDirective>, Option<String>) {
                                            parts.next().map(|s| s.trim()),
                                            parts.next()) {
                 (Some(part0), None, None) => {
-                // if the single argument is a log-level string or number,
-                // treat that as a global fallback
+                    // if the single argument is a log-level string or number,
+                    // treat that as a global fallback
                     match parse_log_level(part0) {
                         Some(num) => (num, None),
                         None => (::MAX_LOG_LEVEL, Some(part0)),