Skip to content

Commit

Permalink
beer - description update
Browse files Browse the repository at this point in the history
  • Loading branch information
brianvoe committed Jan 11, 2024
1 parent 7e54916 commit d8a97de
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions beer.go
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ func addBeerLookup() {
AddFuncLookup("beername", Info{
Display: "Beer Name",
Category: "beer",
Description: "Generates a random name for a beer, inspired by real beer names",
Description: "Name for a beer, inspired by real beer names",
Example: "Duvel",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -132,7 +132,7 @@ func addBeerLookup() {
AddFuncLookup("beerstyle", Info{
Display: "Beer Style",
Category: "beer",
Description: "Generates a random beer style, covering beer types from around the world",
Description: "Style of beer, covering beer types from around the world",
Example: "European Amber Lager",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -143,7 +143,7 @@ func addBeerLookup() {
AddFuncLookup("beerhop", Info{
Display: "Beer Hop",
Category: "beer",
Description: "Generates the name of a random beer hop variety, covering different hop types used in brewing",
Description: "Beer hop variety, covering different hop types used in brewing",
Example: "Glacier",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -154,7 +154,7 @@ func addBeerLookup() {
AddFuncLookup("beeryeast", Info{
Display: "Beer Yeast",
Category: "beer",
Description: "Generates a random type of beer yeast, covering various yeast strains used in beer fermentation",
Description: "Beer yeast, covering various yeast strains used in beer fermentation",
Example: "1388 - Belgian Strong Ale",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -165,7 +165,7 @@ func addBeerLookup() {
AddFuncLookup("beermalt", Info{
Display: "Beer Malt",
Category: "beer",
Description: "Generates a random kind of beer malt, covering various malt types used in the brewing process",
Description: "Beer malt, covering various malt types used in the brewing process",
Example: "Munich",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -176,7 +176,7 @@ func addBeerLookup() {
AddFuncLookup("beeralcohol", Info{
Display: "Beer Alcohol",
Category: "beer",
Description: "Generates a random alcohol percentage",
Description: "Alcohol percentage",
Example: "2.7%",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -187,7 +187,7 @@ func addBeerLookup() {
AddFuncLookup("beeribu", Info{
Display: "Beer IBU",
Category: "beer",
Description: "Generates a random International Bitterness Unit (IBU) value, indicating the bitterness level in beer",
Description: "International Bitterness Unit (IBU) value, indicating the bitterness level in beer",
Example: "29 IBU",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit d8a97de

Please sign in to comment.