Chapter 22, Page 334 eratta

At the top of the page we are given the code
try! try bakery.orderPastry(item: “Cookie”, amountRequested: 1, flavor:
“ChocolateChip”)

The second try keyword is redundant and causes an error. The correct syntax should is
try! bakery.orderPastry(item: “Cookie”, amountRequested: 1, flavor:
“ChocolateChip”)

Thank you for the heads up - much appreciated! :]