Skip to content

Commit cf5da1a

Browse files
EricAtPlanGridqwwdfsad
authored andcommitted
Remove extraneous word in comment
1 parent fb990b0 commit cf5da1a

File tree

1 file changed

+1
-1
lines changed
  • kotlinx-coroutines-core/common/src/selects

1 file changed

+1
-1
lines changed

Diff for: kotlinx-coroutines-core/common/src/selects/Select.kt

+1-1
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ public interface SelectBuilder<in R> {
3535
public operator fun <P, Q> SelectClause2<P, Q>.invoke(param: P, block: suspend (Q) -> R)
3636

3737
/**
38-
* Registers clause in this [select] expression with additional parameter nullable parameter of type [P]
38+
* Registers clause in this [select] expression with additional nullable parameter of type [P]
3939
* with the `null` value for this parameter that selects value of type [Q].
4040
*/
4141
public operator fun <P, Q> SelectClause2<P?, Q>.invoke(block: suspend (Q) -> R) = invoke(null, block)

0 commit comments

Comments
 (0)