Skip to content

Commit fa1d1f5

Browse files
Fix wording of question to make it more clear (#51)
* Fix wording of question to make it more clear It is a bit unclear what exactly is the goal output because the word "is" isn't in the goal. * Update challenges.md --------- Co-authored-by: Ethan McCue <[email protected]> Co-authored-by: Ethan McCue <[email protected]>
1 parent 9f2a370 commit fa1d1f5

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/branching_logic/challenges.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,8 @@ void main() {
4141

4242
## Challenge 4
4343

44-
Write code that will assign the string `The number is {x} even` to `message` if `x` is an even number
45-
and `The number is {x} odd` if `x` is an odd number.
44+
Write code that will assign the string `The number {x} is even` to `message` if `x` is an even number
45+
and `The number {x} is odd` if `x` is an odd number.
4646

4747
So if `x` is 12 the string you should assign `The number 12 is even` to `message`.
4848

0 commit comments

Comments
 (0)