Skip to content

Commit

Permalink
Merge pull request #328 from se-omar/word-adverb-descs
Browse files Browse the repository at this point in the history
improve word adverbs
  • Loading branch information
brianvoe committed Jan 17, 2024
2 parents 4fa3bcd + ef81a84 commit 0eb6fea
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions word_adverb.go
Expand Up @@ -89,7 +89,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverb", Info{
Display: "Adverb",
Category: "word",
Description: "Random adverb",
Description: "Word that modifies verbs, adjectives, or other adverbs",
Example: "smoothly",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -100,7 +100,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverbmanner", Info{
Display: "Adverb Manner",
Category: "word",
Description: "Random manner adverb",
Description: "Adverb that describes how an action is performed",
Example: "stupidly",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -111,7 +111,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverbdegree", Info{
Display: "Adverb Degree",
Category: "word",
Description: "Random degree adverb",
Description: "Adverb that indicates the degree or intensity of an action or adjective",
Example: "intensely",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -122,7 +122,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverbplace", Info{
Display: "Adverb Place",
Category: "word",
Description: "Random place adverb",
Description: "Adverb that indicates the location or direction of an action",
Example: "east",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -133,7 +133,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverbtimedefinite", Info{
Display: "Adverb Time Definite",
Category: "word",
Description: "Random time definite adverb",
Description: "Adverb that specifies the exact time an action occurs",
Example: "now",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -144,7 +144,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverbtimeindefinite", Info{
Display: "Adverb Time Indefinite",
Category: "word",
Description: "Random time indefinite adverb",
Description: "Adverb that gives a general or unspecified time frame",
Example: "already",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -155,7 +155,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverbfrequencydefinite", Info{
Display: "Adverb Frequency Definite",
Category: "word",
Description: "Random frequency definite adverb",
Description: "Adverb that specifies how often an action occurs with a clear frequency",
Example: "hourly",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -166,7 +166,7 @@ func addWordAdverbLookup() {
AddFuncLookup("adverbfrequencyindefinite", Info{
Display: "Adverb Frequency Indefinite",
Category: "word",
Description: "Random frequency indefinite adverb",
Description: "Adverb that specifies how often an action occurs without specifying a particular frequency",
Example: "occasionally",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 0eb6fea

Please sign in to comment.