libstd: fix fallout

This commit is contained in:
Jorge Aparicio
2014-12-04 23:50:57 -05:00
parent 9c7046573b
commit 43cf7b4e45
+1 -1
View File
@@ -29,7 +29,7 @@
use super::{BytesContainer, GenericPath, GenericPathUnsafe};
/// Iterator that yields successive components of a Path as &[u8]
pub type Components<'a> = Splits<'a, u8>;
pub type Components<'a> = Splits<'a, u8, fn(&u8) -> bool>;
/// Iterator that yields successive components of a Path as Option<&str>
pub type StrComponents<'a> =