Skip to content

Commit f42e965

Browse files
authored
Remove trailing comma (pointfreeco#75)
* Remove trailing comma while we support Swift 6.0 * compile for swift 6.0
1 parent c86b811 commit f42e965

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

.github/workflows/ci.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ jobs:
3434
strategy:
3535
matrix:
3636
swift:
37+
- '6.0'
3738
- '6.1'
3839
runs-on: ubuntu-latest
3940
container: swift:${{ matrix.swift }}

Sources/StructuredQueriesCore/Internal/Deprecations.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ extension Table {
5353
or conflictResolution: ConflictResolution? = nil,
5454
_ columns: (TableColumns) -> (TableColumn<Self, V1>, repeat TableColumn<Self, each V2>),
5555
select selection: () -> Select<(C1, repeat each C2), From, Joins>,
56-
onConflict updates: ((inout Updates<Self>) -> Void)?,
56+
onConflict updates: ((inout Updates<Self>) -> Void)?
5757
) -> InsertOf<Self>
5858
where C1.QueryValue == V1, (repeat (each C2).QueryValue) == (repeat each V2) {
5959
insert(or: conflictResolution, columns, select: selection, onConflictDoUpdate: updates)

0 commit comments

Comments
 (0)