Skip to content

Commit 1383c4b

Browse files
cleanup
1 parent 85a5fba commit 1383c4b

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Sources/PowerSync/Protocol/db/CrudEntry.swift

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,12 @@
11
/// Represents the type of CRUD update operation that can be performed on a row.
22
public enum UpdateType: String, Codable {
3-
/// Insert or replace a row. All non-null columns are included in the data.
3+
/// A row has been inserted or replaced
44
case put = "PUT"
55

6-
/// Update a row if it exists. All updated columns are included in the data.
6+
/// A row has been updated
77
case patch = "PATCH"
88

9-
/// Delete a row if it exists.
9+
/// A row has been deleted
1010
case delete = "DELETE"
1111

1212
/// Errors related to invalid `UpdateType` states.

0 commit comments

Comments
 (0)