Spelling fixes in documentation

This commit is contained in:
Remco Bloemen
2016-03-09 15:47:12 +01:00
parent ef021056c9
commit bfbce27a65
3 changed files with 6 additions and 6 deletions
+2 -2
View File
@@ -153,7 +153,7 @@ similar way to our ```POST``` example.
<p>It's advisable to create a separate trigger for <code>UPDATE</code> and <code>INSERT</code>
avoiding conditionals that decide which is the trigger current operation.
This makes it easier to change code for (or even disable) one operation without intefering with others while
This makes it easier to change code for (or even disable) one operation without interfering with others while
improving readability.
</p>
</div>
@@ -186,7 +186,7 @@ basic field replacements, and not at all "incorrect."
* ❌ Cannot be cached or prefetched
* ✅ Idempotent
Simply use the `DELETE` verb. All recors that match your filter
Simply use the `DELETE` verb. All records that match your filter
will be removed. For instance deleting inactive users:
```HTTP