summary refs log tree commit diff
path: root/src/libstd/path/mod.rs
diff options
context:
space:
mode:
authorAlex Crichton <alex@alexcrichton.com>2014-03-27 15:09:47 -0700
committerAlex Crichton <alex@alexcrichton.com>2014-03-31 15:17:12 -0700
commit9a3d04ae7629f6f273643b3a14f106726842be6a (patch)
tree7d8d5fc852d9256b31c7ac892ab3df07f0cfe62c /src/libstd/path/mod.rs
parentf2a5c7a179ab0fc0e415918c1fc5d280a9e02ede (diff)
downloadrust-9a3d04ae7629f6f273643b3a14f106726842be6a.tar.gz
rust-9a3d04ae7629f6f273643b3a14f106726842be6a.zip
std: Switch field privacy as necessary
Diffstat (limited to 'src/libstd/path/mod.rs')
-rw-r--r--src/libstd/path/mod.rs4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs
index c8465eb039f..a0097469e56 100644
--- a/src/libstd/path/mod.rs
+++ b/src/libstd/path/mod.rs
@@ -488,8 +488,8 @@ pub trait GenericPathUnsafe {
 
 /// Helper struct for printing paths with format!()
 pub struct Display<'a, P> {
-    priv path: &'a P,
-    priv filename: bool
+    path: &'a P,
+    filename: bool
 }
 
 impl<'a, P: GenericPath> fmt::Show for Display<'a, P> {