about summary refs log tree commit diff
path: root/src/libstd/path
diff options
context:
space:
mode:
authorAaron Turon <aturon@mozilla.com>2014-10-27 15:37:07 -0700
committerAaron Turon <aturon@mozilla.com>2014-10-28 08:54:21 -0700
commite0ad0fcb95f0bd6e69e9032c23b66515a590dfe5 (patch)
tree8d1fcc64b2219b49b255f92f1d2c4087200d8930 /src/libstd/path
parent58dc0a05abb98ae2db65ca20e70f3bab51f8bf92 (diff)
downloadrust-e0ad0fcb95f0bd6e69e9032c23b66515a590dfe5.tar.gz
rust-e0ad0fcb95f0bd6e69e9032c23b66515a590dfe5.zip
Update code with new lint names
Diffstat (limited to 'src/libstd/path')
-rw-r--r--src/libstd/path/posix.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/path/posix.rs b/src/libstd/path/posix.rs
index 69b6dd76676..eba9b9005cc 100644
--- a/src/libstd/path/posix.rs
+++ b/src/libstd/path/posix.rs
@@ -457,9 +457,9 @@ fn normalize_helper<'a>(v: &'a [u8], is_abs: bool) -> Option<Vec<&'a [u8]>> {
     }
 }
 
-#[allow(non_uppercase_statics)]
+#[allow(non_upper_case_globals)]
 static dot_static: &'static [u8] = b".";
-#[allow(non_uppercase_statics)]
+#[allow(non_upper_case_globals)]
 static dot_dot_static: &'static [u8] = b"..";
 
 #[cfg(test)]