注释完善

This commit is contained in:
John
2018-02-28 12:01:14 +08:00
parent 2b8d85f61b
commit 151fe742a0
6 changed files with 6 additions and 6 deletions

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// 优雅的channel操作.
// 优雅的Channel操作.
package gchan
import (

View File

@ -5,7 +5,7 @@
// You can obtain one at https://gitee.com/johng/gf.
//
// 并发安全的双向链表
// 并发安全的双向链表.
package glist
import (

View File

@ -4,5 +4,5 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// 并发安全的MAP
// 并发安全的哈希MAP.
package gmap

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// 动态大小的安全队列(dynamic channel).
// 并发安全的动态队列.
// 优点:
// 1、队列初始化速度快
// 2、可以向队头/队尾进行Push/Pop操作

View File

@ -4,5 +4,5 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// 并发安全的SET
// 并发安全的集合SET.
package gset

View File

@ -4,7 +4,7 @@
// If a copy of the MIT was not distributed with this file,
// You can obtain one at https://gitee.com/johng/gf.
// 关系数据库操作
// 数据库ORM操作.
package gdb
import (