Skip to content

Commit 1f9e1f3

Browse files
committed
documentation updates
1 parent bc5ef51 commit 1f9e1f3

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

README.md

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,10 @@ seconds on a modest laptop.
2020
* Iteration of the database
2121
* Lemmatization
2222

23+
## Missing features
24+
25+
* Morphology - specifically generating a lemma from input text
26+
2327
## Example Usage
2428

2529
```golang

wordnet.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ type index struct {
2222
sense uint8
2323
}
2424

25-
// A single word which was looked up in the wordnet database
25+
// The results of a search against the wordnet database
2626
type Lookup struct {
2727
word string // the word the user searched for
2828
cluster *cluster // the discoverd synonym set
@@ -56,6 +56,7 @@ type cluster struct {
5656
// Parts of speech
5757
type PartOfSpeech uint8
5858

59+
// A set of multiple parts of speech
5960
type PartOfSpeechList []PartOfSpeech
6061

6162
func (l PartOfSpeechList) Empty() bool {

0 commit comments

Comments
 (0)