Fix General Query.delete() documentation

Fixes #179.

Signed-off-by: Stephen Celis <stephen@stephencelis.com>
This commit is contained in:
Stephen Celis 2015-08-18 19:16:28 -07:00
Родитель 043137e132
Коммит 03b27f9a5f
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -868,7 +868,7 @@ alice.delete()
The `delete` function returns a tuple with an `Int?` representing the number of deletes (or `nil` on failure) and the associated `Statement`.
``` swift
let delete = delete.update(email <- "alice@me.com")
let delete = alice.delete()
if let changes = delete.changes where changes > 0 {
println("deleted alice")
} else if delete.statement.failed {