Skip to content

Commit aaf9d71

Browse files
authored
Fix typo (#7)
* Fix date typo * Fix insert typo
1 parent f157e60 commit aaf9d71

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Sources/StructuredQueriesCore/Documentation.docc/Articles/DefiningYourSchema.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -150,7 +150,7 @@ you can define your own conformances for your own custom data types.
150150
151151
#### Dates
152152
153-
SQLite does not have a native data type, and instead has 3 different ways to represent dates:
153+
SQLite does not have a native date type, and instead has 3 different ways to represent dates:
154154
155155
* Text column interpreted as ISO-8601-formatted string.
156156
* Int column interpreted as number of seconds since Unix epoch.
@@ -256,7 +256,7 @@ enum Priority: Int, QueryBindable {
256256
}
257257
```
258258
259-
The library will automatically encode the priority to an integer when insert into the database,
259+
The library will automatically encode the priority to an integer when inserting into the database,
260260
and will decode data from the database using the `RawRepresentable` conformance of `Priority`.
261261
262262
@Row {

0 commit comments

Comments
 (0)