diff --git a/documents/crud.md b/documents/crud.md index bb6c1dd3..45fecc6c 100644 --- a/documents/crud.md +++ b/documents/crud.md @@ -679,10 +679,10 @@ Delete all matched records ```go db.Where("email LIKE ?", "%jinzhu%").Delete(Email{}) -//// DELETE from emails where email LIKE "%jinhu%"; +//// DELETE from emails where email LIKE "%jinzhu%"; db.Delete(Email{}, "email LIKE ?", "%jinzhu%") -//// DELETE from emails where email LIKE "%jinhu%"; +//// DELETE from emails where email LIKE "%jinzhu%"; ``` ### Soft Delete