Skip to content

Commit

Permalink
Merge pull request #334 from se-omar/word-phrase-descs
Browse files Browse the repository at this point in the history
improve word phrase descs
  • Loading branch information
brianvoe committed Jan 18, 2024
2 parents 74316b9 + b0fbd75 commit cd36628
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions word_phrase.go
Expand Up @@ -109,7 +109,7 @@ func addWordPhraseLookup() {
AddFuncLookup("phrase", Info{
Display: "Phrase",
Category: "word",
Description: "Random phrase",
Description: "A small group of words standing together",
Example: "time will tell",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -120,7 +120,7 @@ func addWordPhraseLookup() {
AddFuncLookup("phrasenoun", Info{
Display: "Noun Phrase",
Category: "word",
Description: "Random noun phrase",
Description: "Phrase with a noun as its head, functions within sentence like a noun",
Example: "a tribe",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -131,7 +131,7 @@ func addWordPhraseLookup() {
AddFuncLookup("phraseverb", Info{
Display: "Verb Phrase",
Category: "word",
Description: "Random verb phrase",
Description: "Phrase that Consists of a verb and its modifiers, expressing an action or state",
Example: "a tribe",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -142,7 +142,7 @@ func addWordPhraseLookup() {
AddFuncLookup("phraseadverb", Info{
Display: "Adverb Phrase",
Category: "word",
Description: "Random adverb phrase",
Description: "Phrase that modifies a verb, adjective, or another adverb, providing additional information.",
Example: "fully gladly",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -153,7 +153,7 @@ func addWordPhraseLookup() {
AddFuncLookup("phrasepreposition", Info{
Display: "Preposition Phrase",
Category: "word",
Description: "Random preposition phrase",
Description: "Phrase starting with a preposition, showing relation between elements in a sentence.",
Example: "out the black thing",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit cd36628

Please sign in to comment.