Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

improve word verb descs #338

Merged
merged 1 commit into from Jan 18, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
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