1
0
mirror of https://github.com/fumiama/jieba.git synced 2026-06-13 05:31:02 +08:00

tweak docs

This commit is contained in:
Wang Bin
2015-05-06 16:11:11 +08:00
parent f96acf3e85
commit b3ea94ba47
4 changed files with 27 additions and 1 deletions

View File

@@ -1,3 +1,5 @@
// Package dictionary contains a interface and wraps all io related work.
// It is used by jiebago module to read/write files.
package dictionary
import (
@@ -8,7 +10,7 @@ import (
"strings"
)
// DictLoader represents a interface that could add one token or load bunch of
// DictLoader is the interface that could add one token or load
// tokens from channel.
type DictLoader interface {
Load(<-chan Token)