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
In Swift, when not using a method/function result, it is common to write:
_ = service.refresh(cart: cart)
However, in Kotlin the resulting code:
_ = service.refresh(cart = cart)
Is not valid because underscore is reserved for lambdas.
It should just be removed like:
service.refresh(cart = cart)
The text was updated successfully, but these errors were encountered:
#55 Remove underscore assignments
bf1a790
Fixed with bf1a790
Sorry, something went wrong.
No branches or pull requests
In Swift, when not using a method/function result, it is common to write:
However, in Kotlin the resulting code:
Is not valid because underscore is reserved for lambdas.
It should just be removed like:
The text was updated successfully, but these errors were encountered: