Skip to content

Commit ab39866

Browse files
ShreckYeCopilot
andauthored
Rephrase an added KDoc line for the array parameter
Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
1 parent 0eec521 commit ab39866

File tree

1 file changed

+1
-1
lines changed
  • exposed-core/src/main/kotlin/org/jetbrains/exposed/v1/core

1 file changed

+1
-1
lines changed

exposed-core/src/main/kotlin/org/jetbrains/exposed/v1/core/OpBuilder.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -658,7 +658,7 @@ fun <T> anyFrom(subQuery: AbstractQuery<*>): Op<T> = AllAnyFromSubQueryOp(true,
658658
* **Note** If [delegateType] is left `null`, the base column type associated with storing elements of type [T] will be
659659
* resolved according to the internal mapping of the element's type in [resolveColumnType].
660660
*
661-
* @param array Wrapped in the resulting [Op] to improve performance. Do not mutate after passing to this function, otherwise pass the list converted using [Array.toList].
661+
* @param array Converted to a list view backed by the original array to improve performance. Do not mutate the array after passing to this function; if mutation is needed, convert using [Array.toList] instead.
662662
*
663663
* @throws IllegalStateException If no column type mapping is found and a [delegateType] is not provided.
664664
*/

0 commit comments

Comments
 (0)