From 151fe742a0df98b39c75fbe2e279e33343d2f59d Mon Sep 17 00:00:00 2001 From: John Date: Wed, 28 Feb 2018 12:01:14 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B3=A8=E9=87=8A=E5=AE=8C=E5=96=84?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- g/container/gchan/gchan.go | 2 +- g/container/glist/safelist.go | 2 +- g/container/gmap/gmap.go | 2 +- g/container/gqueue/gqueue.go | 2 +- g/container/gset/gset.go | 2 +- g/database/gdb/gdb.go | 2 +- 6 files changed, 6 insertions(+), 6 deletions(-) diff --git a/g/container/gchan/gchan.go b/g/container/gchan/gchan.go index a70930763..f28367cfb 100644 --- a/g/container/gchan/gchan.go +++ b/g/container/gchan/gchan.go @@ -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 ( diff --git a/g/container/glist/safelist.go b/g/container/glist/safelist.go index d029555dc..9d541f605 100644 --- a/g/container/glist/safelist.go +++ b/g/container/glist/safelist.go @@ -5,7 +5,7 @@ // You can obtain one at https://gitee.com/johng/gf. // -// 并发安全的双向链表 +// 并发安全的双向链表. package glist import ( diff --git a/g/container/gmap/gmap.go b/g/container/gmap/gmap.go index 2cc2c4952..afd26bd24 100644 --- a/g/container/gmap/gmap.go +++ b/g/container/gmap/gmap.go @@ -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 diff --git a/g/container/gqueue/gqueue.go b/g/container/gqueue/gqueue.go index f3088b362..caaab61a4 100644 --- a/g/container/gqueue/gqueue.go +++ b/g/container/gqueue/gqueue.go @@ -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操作; diff --git a/g/container/gset/gset.go b/g/container/gset/gset.go index af4d43d29..b1951bdeb 100644 --- a/g/container/gset/gset.go +++ b/g/container/gset/gset.go @@ -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 diff --git a/g/database/gdb/gdb.go b/g/database/gdb/gdb.go index 55391d811..73a0e50e9 100644 --- a/g/database/gdb/gdb.go +++ b/g/database/gdb/gdb.go @@ -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 (