From ef81a845aa81400c675911d5f6d149debae95091 Mon Sep 17 00:00:00 2001 From: Omar Ayman Date: Wed, 17 Jan 2024 17:41:25 +0200 Subject: [PATCH] improve word adverbs --- word_adverb.go | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/word_adverb.go b/word_adverb.go index e5456db9..b148bf8d 100644 --- a/word_adverb.go +++ b/word_adverb.go @@ -89,7 +89,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverb", Info{ Display: "Adverb", Category: "word", - Description: "Random adverb", + Description: "Word that modifies verbs, adjectives, or other adverbs", Example: "smoothly", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -100,7 +100,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverbmanner", Info{ Display: "Adverb Manner", Category: "word", - Description: "Random manner adverb", + Description: "Adverb that describes how an action is performed", Example: "stupidly", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -111,7 +111,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverbdegree", Info{ Display: "Adverb Degree", Category: "word", - Description: "Random degree adverb", + Description: "Adverb that indicates the degree or intensity of an action or adjective", Example: "intensely", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -122,7 +122,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverbplace", Info{ Display: "Adverb Place", Category: "word", - Description: "Random place adverb", + Description: "Adverb that indicates the location or direction of an action", Example: "east", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -133,7 +133,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverbtimedefinite", Info{ Display: "Adverb Time Definite", Category: "word", - Description: "Random time definite adverb", + Description: "Adverb that specifies the exact time an action occurs", Example: "now", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -144,7 +144,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverbtimeindefinite", Info{ Display: "Adverb Time Indefinite", Category: "word", - Description: "Random time indefinite adverb", + Description: "Adverb that gives a general or unspecified time frame", Example: "already", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -155,7 +155,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverbfrequencydefinite", Info{ Display: "Adverb Frequency Definite", Category: "word", - Description: "Random frequency definite adverb", + Description: "Adverb that specifies how often an action occurs with a clear frequency", Example: "hourly", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -166,7 +166,7 @@ func addWordAdverbLookup() { AddFuncLookup("adverbfrequencyindefinite", Info{ Display: "Adverb Frequency Indefinite", Category: "word", - Description: "Random frequency indefinite adverb", + Description: "Adverb that specifies how often an action occurs without specifying a particular frequency", Example: "occasionally", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {