Skip to content

Commit

Permalink
Added missing double quotes in instructions (#510)
Browse files Browse the repository at this point in the history
  • Loading branch information
raxavelo authored Nov 12, 2021
1 parent eeba8f8 commit ceb2690
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions exercises/concept/master-mixologist/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,8 +33,8 @@ Implement the function `finishShift(minutesLeft: Int, remainingOrders: [[String]
And good news! If you make all of the orders with time left on your shift you get to go home early!

```swift
finishShift(minutesLeft: 5, remainingOrders: [["beer", "frozen drink", "shot], ["fancy drink", "soda"], ["beer", "beer", "water"], ["mixed drink", frozen drink"]])
// => [["beer", "beer", "water"], ["mixed drink", frozen drink"]]
finishShift(minutesLeft: 5, remainingOrders: [["beer", "frozen drink", "shot"], ["fancy drink", "soda"], ["beer", "beer", "water"], ["mixed drink", "frozen drink"]])
// => [["beer", "beer", "water"], ["mixed drink", "frozen drink"]]
```

## 4. Track certain orders
Expand Down

0 comments on commit ceb2690

Please sign in to comment.