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
function-literal (docs) formatting seems off.
function-literal
When calling into this function:
@file:Suppress("NO_EXPLICIT_VISIBILITY_IN_API_MODE_WARNING") package com.capitalone.android.identity.challenge.internal.logic fun <T1, T2, R> combine( result1: Result<T1>, result2: Result<T2>, transform: suspend (T1, T2) -> R ) { TODO() }
I would expect something like this:
fun usageExpected(result1: Result<Int>, result2: Result<String>) { combine( result1 = result1, result2 = result2 ) { one: Int, two: String -> "$one$two" } }
But instead, we get this:
fun usageActual(result1: Result<Int>, result2: Result<String>) { combine( result1 = result1, result2 = result2 ) { one: Int, two: String -> "$one$two" } }
The parameters (one: Int and two: String) being indented an extra 4 spaces seems very off to me.
one: Int
two: String
1.3.1
The text was updated successfully, but these errors were encountered:
Duplicate of #2816
Sorry, something went wrong.
No branches or pull requests
function-literal
(docs) formatting seems off.When calling into this function:
Expected Behavior
I would expect something like this:
Observed Behavior
But instead, we get this:
The parameters (
one: Int
andtwo: String
) being indented an extra 4 spaces seems very off to me.Your Environment
1.3.1
The text was updated successfully, but these errors were encountered: