Skip to content

Commit 0787ff6

Browse files
authored
Merge pull request #2 from petrochenkov/master
Fix a private-in-public error
2 parents 7862498 + 231fdb6 commit 0787ff6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/iter.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ pub trait ShuffledIterGen<T>: Rng {
2222
}
2323

2424
#[derive(Copy, Clone)]
25-
struct Slice<'a, T: 'a> {
25+
pub struct Slice<'a, T: 'a> {
2626
iter: SI,
2727
slice: &'a [T],
2828
}

0 commit comments

Comments
 (0)