Skip to content

Commit

Permalink
fix grammar: "its" != "it's"
Browse files Browse the repository at this point in the history
  • Loading branch information
raffaelesury authored and BethanyG committed Feb 12, 2022
1 parent dbb95f0 commit 88705fa
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion exercises/concept/black-jack/.docs/instructions.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ Define the `value_of_ace(<card_one>, <card_two>)` function with parameters `card
Your function will have to decide if the upcoming ace will get a value of 1 or a value of 11, and return that value.
Remember: the value of the hand with the ace needs to be as high as possible _without_ going over 21.

**Hint**: if we already have an ace in hand then it's value would be 11.
**Hint**: if we already have an ace in hand then its value would be 11.

```python
>>> value_of_ace('6', `K`)
Expand Down

0 comments on commit 88705fa

Please sign in to comment.