libstd: fix fallout

This commit is contained in:
Jorge Aparicio 2014-12-04 23:50:57 -05:00
parent 9c7046573b
commit 43cf7b4e45
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ use vec::Vec;
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> =