Skip to content

Commit

Permalink
Removing wrong trailing comma in docs (sqldelight#4355)
Browse files Browse the repository at this point in the history
  • Loading branch information
hfhbd authored Jul 11, 2023
1 parent ca242a7 commit 68692f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/common/types_sqlite.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ CREATE TABLE some_types (
some_long INTEGER, -- Stored as INTEGER in db, retrieved as Long
some_double REAL, -- Stored as REAL in db, retrieved as Double
some_string TEXT, -- Stored as TEXT in db, retrieved as String
some_blob BLOB, -- Stored as BLOB in db, retrieved as ByteArray
some_blob BLOB -- Stored as BLOB in db, retrieved as ByteArray
);
```

Expand Down

0 comments on commit 68692f2

Please sign in to comment.