package comments update

This commit is contained in:
John
2019-01-16 13:35:16 +08:00
parent 1600a80124
commit 72569321fa
63 changed files with 72 additions and 43 deletions

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gbase64 provides useful API for BASE64 encoding/decoding algorithms.
// BASE64
package gbase64
import (

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gbinary provides useful API for handling binary/bytes data.
// 二进制及byte操作
package gbinary
import (

View File

@ -7,7 +7,8 @@
// @date 20180604
// Package gcharset provides converting string to requested character encoding.
// 字符集转换方法.
//
// 字符集转换方法,
// 使用mahonia实现的字符集转换方法支持的字符集包括常见的utf8/UTF-16/UTF-16LE/macintosh/big5/gbk/gb18030,支持的全量字符集可以参考mahonia包
package gcharset

View File

@ -5,6 +5,7 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gcompress provides kinds of compression algorithms for binary/bytes data.
//
// 数据压缩/解压.
package gcompress

View File

@ -5,6 +5,7 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package ghash provides some popular hash functions(uint32/uint64) in go.
//
// 常用的hash函数.
package ghash

View File

@ -5,6 +5,7 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package ghtml provides useful API for HTML content handling.
//
// HTML编码.
package ghtml

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gjson provides quite flexible and useful API for JSON/XML/YAML/TOML content handling.
// JSON解析/封装.
package gjson
import (

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gp.
// Package gparser provides a flexible and easy way for accessing/converting variable and JSON/XML/YAML/TOML contents.
// 数据文件编码/解析.
package gparser
import (

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gtoml provides accessing and converting for TOML content.
// TOML.
package gtoml
import (

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gurl provides useful API for URL handling.
// URL编码.
package gurl
import "net/url"

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gxml provides accessing and converting for XML content.
// XML.
package gxml
import (

View File

@ -5,7 +5,6 @@
// You can obtain one at https://gitee.com/johng/gf.
// Package gyaml provides accessing and converting for YAML content.
// YAML.
package gyaml
import "gitee.com/johng/gf/third/github.com/ghodss/yaml"