Skip to content

Commit 7c8394b

Browse files
authored
Fix grammar in beer templates (#131)
* Replace term that produces grammatical error * Update changelog * Move a/an to each size entry
1 parent 6ea1865 commit 7c8394b

File tree

2 files changed

+7
-6
lines changed

2 files changed

+7
-6
lines changed

CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
1414
### Fixed
1515
- Fix matching exception in horoscope test
1616
- Fix youtube.py ISO time parse
17+
- Fix grammatical error in food sentence (beer)
1718

1819
## [1.3.0] 2020-03-17
1920
### Added

data/food/beer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
22
"templates": [
3-
"hands {user} a {size} {container} of {beer}."
3+
"hands {user} {size} {container} of {beer}."
44
],
55
"parts": {
66
"size": [
7-
"small",
8-
"medium",
9-
"large",
10-
"enormous",
11-
"half-empty"
7+
"a small",
8+
"a medium",
9+
"a large",
10+
"an enormous",
11+
"a half-empty"
1212
],
1313
"container": [
1414
"glass",

0 commit comments

Comments
 (0)