Skip to content

Commit 07cfbb7

Browse files
committed
Clarify comments
1 parent 87aece5 commit 07cfbb7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

permutation.go

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
package permutation
33

44
// Permute fills a channel with permutations of length, and at most value max.
5-
// It calls out to concurrently handle the filling of the channel.
5+
// It launches a goroutine to concurrently handle the filling of the channel.
66
// The channel is intended to be used as the index in an array.
77
func Permute( max int, length int, ch chan []int){
88
go fillPermChan( length, max, ch)

0 commit comments

Comments
 (0)