From 83c0d1d6e6ed132b3a557caa1f7378651308bc5d Mon Sep 17 00:00:00 2001 From: dudaodong Date: Fri, 15 Apr 2022 17:02:34 +0800 Subject: [PATCH] fix: fix misspellings --- concurrency/channel.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/concurrency/channel.go b/concurrency/channel.go index b0e71ac..a7e3b68 100644 --- a/concurrency/channel.go +++ b/concurrency/channel.go @@ -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 { }