Merge pull request #3 from Xeoncross/master

Change quotes to use markdown
This commit is contained in:
Lasse Martin Jakobsen 2019-06-21 19:13:54 +02:00 committed by GitHub
commit bbf5a24a56
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -160,7 +160,7 @@ The reason why this is true, is because of the scope of the variable, rather tha
```go
func BeerBrandListToBeerList(beerBrands []BeerBrand) []Beer {
var beerList []Beer
for _, brand := range beerBrandList {
for _, brand := range beerBrands {
for _, beer := range brand {
beerList = append(beerList, beer)
}