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 adjective #327

Merged
merged 1 commit into from Jan 17, 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
16 changes: 8 additions & 8 deletions word_adjective.go
Expand Up @@ -95,7 +95,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjective", Info{
Display: "Adjective",
Category: "word",
Description: "Random adjective",
Description: "Word describing or modifying a noun",
Example: "genuine",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -106,7 +106,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjectivedescriptive", Info{
Display: "Descriptive Adjective",
Category: "word",
Description: "Random descriptive adjective",
Description: "Adjective that provides detailed characteristics about a noun",
Example: "brave",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -117,7 +117,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjectivequantitative", Info{
Display: "Quantitative Adjective",
Category: "word",
Description: "Random quantitative adjective",
Description: "Adjective that indicates the quantity or amount of something",
Example: "a little",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -128,7 +128,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjectiveproper", Info{
Display: "Proper Adjective",
Category: "word",
Description: "Random proper adjective",
Description: "Adjective derived from a proper noun, often used to describe nationality or origin",
Example: "Afghan",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -139,7 +139,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjectivedemonstrative", Info{
Display: "Demonstrative Adjective",
Category: "word",
Description: "Random demonstrative adjective",
Description: "Adjective used to point out specific things",
Example: "this",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -150,7 +150,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjectivepossessive", Info{
Display: "Possessive Adjective",
Category: "word",
Description: "Random possessive adjective",
Description: "Adjective indicating ownership or possession",
Example: "my",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -161,7 +161,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjectiveinterrogative", Info{
Display: "Interrogative Adjective",
Category: "word",
Description: "Random interrogative adjective",
Description: "Adjective used to ask questions",
Example: "what",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -172,7 +172,7 @@ func addWordAdjectiveLookup() {
AddFuncLookup("adjectiveindefinite", Info{
Display: "Indefinite Adjective",
Category: "word",
Description: "Random indefinite adjective",
Description: "Adjective describing a non-specific noun",
Example: "few",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down