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 word_noun descs #333

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
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