internal/thread: fix comments

This commit is contained in:
Hajime Hoshi 2023-12-23 23:23:52 +09:00
parent 4895ae7f93
commit 2e363cc19b

View File

@ -39,8 +39,6 @@ type OSThread struct {
}
// NewOSThread creates a new thread.
//
// queueSize indicates the function queue size. This matters when you use CallAsync.
func NewOSThread() *OSThread {
return &OSThread{
funcs: make(chan queueItem),