fix: fix misspellings

This commit is contained in:
dudaodong
2022-04-15 17:02:34 +08:00
parent dfc6b868fb
commit 83c0d1d6e6
+2 -2
View File
@@ -4,8 +4,8 @@
// Package concurrency contain some functions to support concurrent programming. eg, goroutine, channel, async.
package concurrency
// Channel is a logic object which implemented by go chan
// all methods of channel are in the book tiled《Concurrency in Go》
// Channel is a logic object which can generate or manipulate go channel
// all methods of Channel are in the book tilted《Concurrency in Go》
type Channel struct {
}