We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87aece5 commit 07cfbb7Copy full SHA for 07cfbb7
permutation.go
@@ -2,7 +2,7 @@
2
package permutation
3
4
// 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.
+// It launches a goroutine to concurrently handle the filling of the channel.
6
// The channel is intended to be used as the index in an array.
7
func Permute( max int, length int, ch chan []int){
8
go fillPermChan( length, max, ch)
0 commit comments