Skip to content

Commit 68ba80c

Browse files
committed
Fix typo
1 parent cc89c0d commit 68ba80c

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

rand_generic.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import "math"
1212

1313
// ShuffleSlice pseudo-randomizes the order of the elements of s.
1414
//
15-
// When r is nil, ShuffleSlices uses non-deterministic goroutine-local
15+
// When r is nil, ShuffleSlice uses non-deterministic goroutine-local
1616
// pseudo-random data source, and is safe for concurrent use from multiple goroutines.
1717
func ShuffleSlice[S ~[]E, E any](r *Rand, s S) {
1818
if r == nil {

0 commit comments

Comments
 (0)