Skip to content

Commit

Permalink
impl Debug for SplitWhitespace.
Browse files Browse the repository at this point in the history
  • Loading branch information
clarfonthey committed Sep 3, 2017
1 parent 981ce7d commit 4260e43
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/libstd_unicode/u_str.rs
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ use core::str::Split;
/// [`split_whitespace`]: ../../std/primitive.str.html#method.split_whitespace
/// [`str`]: ../../std/primitive.str.html
#[stable(feature = "split_whitespace", since = "1.1.0")]
#[derive(Clone)]
#[derive(Clone, Debug)]
pub struct SplitWhitespace<'a> {
inner: Filter<Split<'a, IsWhitespace>, IsNotEmpty>,
}
Expand Down

0 comments on commit 4260e43

Please sign in to comment.