From d1c7f3ae19929161732de0c3de086db48d6f2580 Mon Sep 17 00:00:00 2001 From: Samuel Berthe Date: Wed, 20 Dec 2023 00:47:09 +0100 Subject: [PATCH] Update slice.go --- slice.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/slice.go b/slice.go index 49c991f8..4bfed2de 100644 --- a/slice.go +++ b/slice.go @@ -232,7 +232,7 @@ func Flatten[T any](collection [][]T) []T { } // Interleave round-robin alternating input slices and sequentially appending value at index into result -// Play: https://go.dev/play/p/DDhlwrShbwe +// Play: https://go.dev/play/p/-RJkTLQEDVt func Interleave[T any](collections ...[]T) []T { if len(collections) == 0 { return []T{}