├── .travis.yml ├── LICENSE ├── README.md ├── doc.go ├── morphemekor ├── doc.go ├── morphemekor.go └── morphemekor_test.go ├── segment ├── doc.go ├── probability.go ├── segment.go └── segment_test.go ├── similar ├── doc.go ├── similar.go └── similar_test.go ├── spellcheck ├── doc.go ├── spellcheck.go └── spellcheck_test.go ├── test └── testdata └── sample.txt /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/README.md -------------------------------------------------------------------------------- /doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/doc.go -------------------------------------------------------------------------------- /morphemekor/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/morphemekor/doc.go -------------------------------------------------------------------------------- /morphemekor/morphemekor.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/morphemekor/morphemekor.go -------------------------------------------------------------------------------- /morphemekor/morphemekor_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/morphemekor/morphemekor_test.go -------------------------------------------------------------------------------- /segment/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/segment/doc.go -------------------------------------------------------------------------------- /segment/probability.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/segment/probability.go -------------------------------------------------------------------------------- /segment/segment.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/segment/segment.go -------------------------------------------------------------------------------- /segment/segment_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/segment/segment_test.go -------------------------------------------------------------------------------- /similar/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/similar/doc.go -------------------------------------------------------------------------------- /similar/similar.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/similar/similar.go -------------------------------------------------------------------------------- /similar/similar_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/similar/similar_test.go -------------------------------------------------------------------------------- /spellcheck/doc.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/spellcheck/doc.go -------------------------------------------------------------------------------- /spellcheck/spellcheck.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/spellcheck/spellcheck.go -------------------------------------------------------------------------------- /spellcheck/spellcheck_test.go: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/spellcheck/spellcheck_test.go -------------------------------------------------------------------------------- /test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/test -------------------------------------------------------------------------------- /testdata/sample.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gyuho/goling/HEAD/testdata/sample.txt --------------------------------------------------------------------------------