Skip to content

Commit

Permalink
Merge pull request #335 from se-omar/preposition-descs
Browse files Browse the repository at this point in the history
improve preposition descs
  • Loading branch information
brianvoe committed Jan 18, 2024
2 parents cd36628 + b74697f commit 3957b56
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 3957b56

Please sign in to comment.