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 preposition descs #335

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
8 changes: 4 additions & 4 deletions word_preposition.go
Expand Up @@ -51,7 +51,7 @@ func addWordPrepositionLookup() {
AddFuncLookup("preposition", Info{
Display: "Preposition",
Category: "word",
Description: "Random preposition",
Description: "Words used to express the relationship of a noun or pronoun to other words in a sentence",
Example: "other than",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -62,7 +62,7 @@ func addWordPrepositionLookup() {
AddFuncLookup("prepositionsimple", Info{
Display: "Preposition Simple",
Category: "word",
Description: "Random simple preposition",
Description: "Single-word preposition showing relationships between 2 parts of a sentence",
Example: "out",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -73,7 +73,7 @@ func addWordPrepositionLookup() {
AddFuncLookup("prepositiondouble", Info{
Display: "Preposition Double",
Category: "word",
Description: "Random double preposition",
Description: "Two-word combination preposition, indicating a complex relation",
Example: "before",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -84,7 +84,7 @@ func addWordPrepositionLookup() {
AddFuncLookup("prepositioncompound", Info{
Display: "Preposition Compound",
Category: "word",
Description: "Random compound preposition",
Description: "Preposition that can be formed by combining two or more prepositions",
Example: "according to",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down