We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hi! I'm no Kotlin expert, just noticed a confusing detail on the Select expression docs page:
There's a runnable example, which, when clicking on the play button, produces output:
fizz -> 'Fizz' buzz -> 'Buzz!' fizz -> 'Fizz' fizz -> 'Fizz' buzz -> 'Buzz!' fizz -> 'Fizz' fizz -> 'Fizz'
Which looks in line with the contents of the docs page so far. However, the page states:
"The result of this code is:
fizz -> 'Fizz' buzz -> 'Buzz!' fizz -> 'Fizz' fizz -> 'Fizz' buzz -> 'Buzz!' fizz -> 'Fizz' buzz -> 'Buzz!'
"
Note the last line.
Looks like a typo to me, since at the 7th execution, fizz() should take precedence, right?
fizz()
The text was updated successfully, but these errors were encountered:
Thanks for spotting!
Sorry, something went wrong.
Update select-guide timings to be precise
ee3382b
Fixes #3385
9e886f1
No branches or pull requests
Hi! I'm no Kotlin expert, just noticed a confusing detail on the Select expression docs page:
There's a runnable example, which, when clicking on the play button, produces output:
Which looks in line with the contents of the docs page so far. However, the page states:
"The result of this code is:
"
Note the last line.
Looks like a typo to me, since at the 7th execution,
fizz()
should take precedence, right?The text was updated successfully, but these errors were encountered: