Skip to content

Commit

Permalink
Merge pull request #337 from se-omar/word-sentence-descs
Browse files Browse the repository at this point in the history
improve word sentence descs
  • Loading branch information
brianvoe committed Jan 18, 2024
2 parents fac8580 + 1410f43 commit 351b4f4
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions word_sentence.go
Expand Up @@ -124,7 +124,7 @@ func addWordSentenceLookup() {
AddFuncLookup("sentence", Info{
Display: "Sentence",
Category: "word",
Description: "Random sentence",
Description: "Set of words expressing a statement, question, exclamation, or command",
Example: "Interpret context record river mind.",
Output: "string",
Params: []Param{
Expand All @@ -146,7 +146,7 @@ func addWordSentenceLookup() {
AddFuncLookup("paragraph", Info{
Display: "Paragraph",
Category: "word",
Description: "Random paragraph",
Description: "Distinct section of writing covering a single theme, composed of multiple sentences",
Example: "Interpret context record river mind press self should compare property outcome divide. Combine approach sustain consult discover explanation direct address church husband seek army. Begin own act welfare replace press suspect stay link place manchester specialist. Arrive price satisfy sign force application hair train provide basis right pay. Close mark teacher strengthen information attempt head touch aim iron tv take.",
Output: "string",
Params: []Param{
Expand Down Expand Up @@ -192,7 +192,7 @@ func addWordSentenceLookup() {
AddFuncLookup("question", Info{
Display: "Question",
Category: "word",
Description: "Random question",
Description: "Statement formulated to inquire or seek clarification",
Example: "Roof chia echo?",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -201,9 +201,9 @@ func addWordSentenceLookup() {
})

AddFuncLookup("quote", Info{
Display: "Qoute",
Display: "Quote",
Category: "word",
Description: "Random quote",
Description: "Direct repetition of someone else's words",
Example: `"Roof chia echo." - Lura Lockman`,
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 351b4f4

Please sign in to comment.