Skip to content

Commit 8d9cf61

Browse files
committed
fixed doctest syntax
1 parent 05b07aa commit 8d9cf61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/dataset/impl_dataset.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -577,7 +577,7 @@ where
577577
/// ### Returns
578578
///
579579
/// A new shuffled version of the current Dataset
580-
/// ```
580+
///
581581
pub fn shuffle<R: Rng>(&self, rng: &mut R) -> DatasetBase<Array2<F>, T::Owned> {
582582
let mut indices = (0..self.nsamples()).collect::<Vec<_>>();
583583
indices.shuffle(rng);

0 commit comments

Comments
 (0)