about summary refs log tree commit diff
path: root/src/libstd/path/mod.rs
diff options
context:
space:
mode:
authorJorge Aparicio <japaricious@gmail.com>2015-01-04 21:39:02 -0500
committerJorge Aparicio <japaricious@gmail.com>2015-01-05 14:56:49 -0500
commit774588fd9def900a467ba2b4ec3620f89832a799 (patch)
tree9decb61d90da78a15e4bae48603920455b5e10d1 /src/libstd/path/mod.rs
parent03268bbf35d3ff2350d987fe7b60375839abdf2e (diff)
downloadrust-774588fd9def900a467ba2b4ec3620f89832a799.tar.gz
rust-774588fd9def900a467ba2b4ec3620f89832a799.zip
sed -i -s 's/ for Sized?//g' **/*.rs
Diffstat (limited to 'src/libstd/path/mod.rs')
-rw-r--r--src/libstd/path/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/libstd/path/mod.rs b/src/libstd/path/mod.rs
index bf9ffbffe7d..ac281439ce5 100644
--- a/src/libstd/path/mod.rs
+++ b/src/libstd/path/mod.rs
@@ -786,7 +786,7 @@ pub trait GenericPath: Clone + GenericPathUnsafe {
 }
 
 /// A trait that represents something bytes-like (e.g. a &[u8] or a &str)
-pub trait BytesContainer for Sized? {
+pub trait BytesContainer {
     /// Returns a &[u8] representing the receiver
     fn container_as_bytes<'a>(&'a self) -> &'a [u8];
     /// Returns the receiver interpreted as a utf-8 string, if possible