We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2316fb3 commit fedcdefCopy full SHA for fedcdef
GRDB/QueryInterface/Request/QueryInterfaceRequest.swift
@@ -1050,11 +1050,11 @@ extension QueryInterfaceRequest {
1050
public func updateAll(
1051
_ db: Database,
1052
onConflict conflictResolution: Database.ConflictResolution? = nil,
1053
- assignments: (RowDecoder.ColumnsProvider) -> ColumnAssignment
+ assignment: (RowDecoder.ColumnsProvider) -> ColumnAssignment
1054
) throws -> Int
1055
where RowDecoder: TableRecord
1056
{
1057
- try updateAll(db, onConflict: conflictResolution, [assignments(RowDecoder.columns)])
+ try updateAll(db, onConflict: conflictResolution, [assignment(RowDecoder.columns)])
1058
}
1059
1060
/// Updates matching rows, and returns the number of updated rows.
0 commit comments