Skip to content

Commit

Permalink
Fix shuffle docstring
Browse files Browse the repository at this point in the history
  • Loading branch information
nathanrboyer committed Oct 10, 2024
1 parent e7efe28 commit 28e33bc
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/abstractdataframe/abstractdataframe.jl
Original file line number Diff line number Diff line change
Expand Up @@ -2556,10 +2556,10 @@ julia> shuffle(rng, DataFrame(a=1:5, b=1:5))
Row │ a b
│ Int64 Int64
─────┼──────────────
1 │ 2 2
2 │ 1 1
3 │ 4 4
4 │ 3 3
1 │ 3 3
2 │ 4 4
3 │ 1 1
4 │ 2 2
5 │ 5 5
```
"""
Expand Down

0 comments on commit 28e33bc

Please sign in to comment.