Skip to content

Commit

Permalink
Merge pull request #333 from se-omar/word-noun-descs
Browse files Browse the repository at this point in the history
improve word_noun descs
  • Loading branch information
brianvoe committed Jan 18, 2024
2 parents 0994b7f + 526d3fd commit 74316b9
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions word_noun.go
Expand Up @@ -115,7 +115,7 @@ func addWordNounLookup() {
AddFuncLookup("noun", Info{
Display: "Noun",
Category: "word",
Description: "Random noun",
Description: "Person, place, thing, or idea, named or referred to in a sentence",
Example: "aunt",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -126,7 +126,7 @@ func addWordNounLookup() {
AddFuncLookup("nouncommon", Info{
Display: "Noun Common",
Category: "word",
Description: "Random common noun",
Description: "General name for people, places, or things, not specific or unique",
Example: "part",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -137,7 +137,7 @@ func addWordNounLookup() {
AddFuncLookup("nounconcrete", Info{
Display: "Noun Concrete",
Category: "word",
Description: "Random concrete noun",
Description: "Names for physical entities experienced through senses like sight, touch, smell, or taste",
Example: "snowman",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -148,7 +148,7 @@ func addWordNounLookup() {
AddFuncLookup("nounabstract", Info{
Display: "Noun Abstract",
Category: "word",
Description: "Random abstract noun",
Description: "Ideas, qualities, or states that cannot be perceived with the five senses",
Example: "confusion",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -159,7 +159,7 @@ func addWordNounLookup() {
AddFuncLookup("nouncollectivepeople", Info{
Display: "Noun Collective People",
Category: "word",
Description: "Random collective noun person",
Description: "Group of people or things regarded as a unit",
Example: "body",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -170,7 +170,7 @@ func addWordNounLookup() {
AddFuncLookup("nouncollectiveanimal", Info{
Display: "Noun Collective Animal",
Category: "word",
Description: "Random collective noun animal",
Description: "Group of animals, like a 'pack' of wolves or a 'flock' of birds",
Example: "party",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -181,7 +181,7 @@ func addWordNounLookup() {
AddFuncLookup("nouncollectivething", Info{
Display: "Noun Collective Thing",
Category: "word",
Description: "Random collective noun thing",
Description: "Group of objects or items, such as a 'bundle' of sticks or a 'cluster' of grapes",
Example: "hand",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -192,7 +192,7 @@ func addWordNounLookup() {
AddFuncLookup("nouncountable", Info{
Display: "Noun Countable",
Category: "word",
Description: "Random countable noun",
Description: "Items that can be counted individually",
Example: "neck",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -203,7 +203,7 @@ func addWordNounLookup() {
AddFuncLookup("noununcountable", Info{
Display: "Noun Uncountable",
Category: "word",
Description: "Random uncountable noun",
Description: "Items that can't be counted individually",
Example: "seafood",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -214,7 +214,7 @@ func addWordNounLookup() {
AddFuncLookup("nounproper", Info{
Display: "Noun Proper",
Category: "word",
Description: "Random proper noun",
Description: "Specific name for a particular person, place, or organization",
Example: "John",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 74316b9

Please sign in to comment.