Skip to content

Commit a8f2b87

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 ab39866 commit a8f2b87

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
@@ -699,7 +699,7 @@ fun <T> allFrom(subQuery: AbstractQuery<*>): Op<T> = AllAnyFromSubQueryOp(false,
699699
* **Note** If [delegateType] is left `null`, the base column type associated with storing elements of type [T] will be
700700
* resolved according to the internal mapping of the element's type in [resolveColumnType].
701701
*
702-
* @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].
702+
* @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.
703703
*
704704
* @throws IllegalStateException If no column type mapping is found and a [delegateType] is not provided.
705705
*/

0 commit comments

Comments
 (0)