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 sentence descs #337

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
10 changes: 5 additions & 5 deletions word_sentence.go
Original file line number Diff line number Diff line change
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