Skip to content

Commit

Permalink
Merge pull request #329 from se-omar/word-connective-descs
Browse files Browse the repository at this point in the history
improve word connective
  • Loading branch information
brianvoe committed Jan 17, 2024
2 parents 483a776 + eb9700a commit 4fa3bcd
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions word_connective.go
Expand Up @@ -85,7 +85,7 @@ func addWordConnectiveLookup() {
AddFuncLookup("connective", Info{
Display: "Connective",
Category: "word",
Description: "Random connective word",
Description: "Word used to connect words or sentences",
Example: "such as",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -96,7 +96,7 @@ func addWordConnectiveLookup() {
AddFuncLookup("connectivetime", Info{
Display: "Connective Time",
Category: "word",
Description: "Random connective time word",
Description: "Connective word used to indicate a temporal relationship between events or actions",
Example: "finally",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -107,7 +107,7 @@ func addWordConnectiveLookup() {
AddFuncLookup("connectivecomparative", Info{
Display: "Connective Comparitive",
Category: "word",
Description: "Random connective comparative word",
Description: "Connective word used to indicate a comparison between two or more things",
Example: "in addition",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -118,7 +118,7 @@ func addWordConnectiveLookup() {
AddFuncLookup("connectivecomplaint", Info{
Display: "Connective Complaint",
Category: "word",
Description: "Random connective complaint word",
Description: "Connective word used to express dissatisfaction or complaints about a situation",
Example: "besides",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -129,7 +129,7 @@ func addWordConnectiveLookup() {
AddFuncLookup("connectivelisting", Info{
Display: "Connective Listing",
Category: "word",
Description: "Random connective listing word",
Description: "Connective word used to list or enumerate items or examples",
Example: "firstly",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -140,7 +140,7 @@ func addWordConnectiveLookup() {
AddFuncLookup("connectivecasual", Info{
Display: "Connective Casual",
Category: "word",
Description: "Random connective casual word",
Description: "Connective word used to indicate a cause-and-effect relationship between events or actions",
Example: "an outcome of",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -151,7 +151,7 @@ func addWordConnectiveLookup() {
AddFuncLookup("connectiveexamplify", Info{
Display: "Connective Examplify",
Category: "word",
Description: "Random connective examplify word",
Description: "Connective word used to provide examples or illustrations of a concept or idea",
Example: "then",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 4fa3bcd

Please sign in to comment.