about summary refs log tree commit diff
path: root/src/libstd
diff options
context:
space:
mode:
authorTshepang Lekhonkhobe <tshepang@gmail.com>2015-05-23 19:51:52 +0200
committerTshepang Lekhonkhobe <tshepang@gmail.com>2015-05-23 19:51:52 +0200
commitd59546d07d861e73ade099d28e19c6c7e64dd498 (patch)
treee7e44f24395b8b24750c2e49fe409af41d0e73f3 /src/libstd
parentd233c28e768f8481a275e55d0eca8017c50dc712 (diff)
downloadrust-d59546d07d861e73ade099d28e19c6c7e64dd498.tar.gz
rust-d59546d07d861e73ade099d28e19c6c7e64dd498.zip
path: make this bit follow idiom
Diffstat (limited to 'src/libstd')
-rw-r--r--src/libstd/path.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path.rs b/src/libstd/path.rs
index 2ce6c18ee1a..8b7ef30b655 100644
--- a/src/libstd/path.rs
+++ b/src/libstd/path.rs
@@ -319,7 +319,7 @@ impl<'a> Prefix<'a> {
         use self::Prefix::*;
         match *self {
             Verbatim(_) | VerbatimDisk(_) | VerbatimUNC(_, _) => true,
-            _ => false
+            _ => false,
         }
     }