From 0ee75d5b5523c135a7cf027ed3469def7ea1f8fe Mon Sep 17 00:00:00 2001 From: Omar Ayman Date: Thu, 18 Jan 2024 20:45:42 +0200 Subject: [PATCH] improve word verb descs --- word_verb.go | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/word_verb.go b/word_verb.go index a18363bb..6a5db234 100644 --- a/word_verb.go +++ b/word_verb.go @@ -63,7 +63,7 @@ func addWordVerbLookup() { AddFuncLookup("verb", Info{ Display: "Verb", Category: "word", - Description: "Random verb", + Description: "Word expressing an action, event or state", Example: "release", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -74,7 +74,7 @@ func addWordVerbLookup() { AddFuncLookup("verbaction", Info{ Display: "Action Verb", Category: "word", - Description: "Random action verb", + Description: "Verb Indicating a physical or mental action", Example: "close", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -85,7 +85,7 @@ func addWordVerbLookup() { AddFuncLookup("verbtransitive", Info{ Display: "Transitive Verb", Category: "word", - Description: "Random transitive verb", + Description: "Verb that requires a direct object to complete its meaning", Example: "follow", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -96,7 +96,7 @@ func addWordVerbLookup() { AddFuncLookup("verbintransitive", Info{ Display: "Intransitive Verb", Category: "word", - Description: "Random intransitive verb", + Description: "Verb that does not require a direct object to complete its meaning", Example: "laugh", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -107,7 +107,7 @@ func addWordVerbLookup() { AddFuncLookup("verblinking", Info{ Display: "Linking Verb", Category: "word", - Description: "Random linking verb", + Description: "Verb that Connects the subject of a sentence to a subject complement", Example: "was", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) { @@ -118,7 +118,7 @@ func addWordVerbLookup() { AddFuncLookup("verbhelping", Info{ Display: "Helping Verb", Category: "word", - Description: "Random helping verb", + Description: "Auxiliary verb that helps the main verb complete the sentence", Example: "be", Output: "string", Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {