Skip to content
This repository has been archived by the owner on Jan 10, 2023. It is now read-only.

fixing 2 typos #223

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/spec/08_referential_integrity.md
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ necessary to maintain data integrity.
`INSERT`/`INSERT_OR_REPLACE`

* Same as in the `RESTRICT` mode. Note that for `insertOrReplace()` queries,
there is no cascading. If cascading is desrired an `update()` query should
there is no cascading. If cascading is desired an `update()` query should
be used instead.

`DELETE`
Expand All @@ -81,7 +81,7 @@ When in `RESTRICT` constraint mode, constraints can be marked as `DEFERRABLE` or
therefore `IMMEDIATE` will be used.

Timing enforcement should be exposed via the schema creation API as an optional
enum parameter. The enum is named `lf.ConstraintTiming` The default value, if
enum parameter. The enum is named `lf.ConstraintTiming`. The default value, if
such parameter is not provided, is `IMMEDIATE`.

#### 8.3.1 DEFERRABLE
Expand Down