Skip to content

Commit

Permalink
Merge pull request #338 from se-omar/word-verb-descs
Browse files Browse the repository at this point in the history
improve word verb descs
  • Loading branch information
brianvoe committed Jan 18, 2024
2 parents 3957b56 + 0ee75d5 commit fac8580
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions word_verb.go
Expand Up @@ -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) {
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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) {
Expand All @@ -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) {
Expand Down

0 comments on commit fac8580

Please sign in to comment.