Skip to content

Commit

Permalink
Merge pull request #341 from se-omar/beer-descs
Browse files Browse the repository at this point in the history
improve beer descs
  • Loading branch information
brianvoe committed Jan 19, 2024
2 parents 5dfa709 + 3d86aa1 commit 158fa67
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions beer.go
Expand Up @@ -121,7 +121,7 @@ func addBeerLookup() {
AddFuncLookup("beername", Info{
Display: "Beer Name",
Category: "beer",
Description: "Name for a beer, inspired by real beer names",
Description: "Specific brand or variety of beer",
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: "Style of beer, covering beer types from around the world",
Description: "Distinct characteristics and flavors of beer",
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: "Beer hop variety, covering different hop types used in brewing",
Description: "The flower used in brewing to add flavor, aroma, and bitterness to beer",
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: "Beer yeast, covering various yeast strains used in beer fermentation",
Description: "Microorganism used in brewing to ferment sugars, producing alcohol and carbonation in beer",
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: "Beer malt, covering various malt types used in the brewing process",
Description: "Processed barley or other grains, provides sugars for fermentation and flavor to beer",
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: "Alcohol percentage",
Description: "Measures the alcohol content in beer",
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: "International Bitterness Unit (IBU) value, indicating the bitterness level in beer",
Description: "Scale measuring bitterness of beer from hops",
Example: "29 IBU",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand All @@ -198,7 +198,7 @@ func addBeerLookup() {
AddFuncLookup("beerblg", Info{
Display: "Beer BLG",
Category: "beer",
Description: "Generates a random beer Balling (°Blg) value, representing the beer's original gravity or sugar content",
Description: "Scale indicating the concentration of extract in worts",
Example: "6.4°Blg",
Output: "string",
Generate: func(r *rand.Rand, m *MapParams, info *Info) (any, error) {
Expand Down

0 comments on commit 158fa67

Please sign in to comment.