Fix typo in documentation
This commit is contained in:
		
							parent
							
								
									a48d6f4b8e
								
							
						
					
					
						commit
						1fec745f54
					
				@ -679,10 +679,10 @@ Delete all matched records
 | 
				
			|||||||
 | 
					
 | 
				
			||||||
```go
 | 
					```go
 | 
				
			||||||
db.Where("email LIKE ?", "%jinzhu%").Delete(Email{})
 | 
					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%")
 | 
					db.Delete(Email{}, "email LIKE ?", "%jinzhu%")
 | 
				
			||||||
//// DELETE from emails where email LIKE "%jinhu%";
 | 
					//// DELETE from emails where email LIKE "%jinzhu%";
 | 
				
			||||||
```
 | 
					```
 | 
				
			||||||
 | 
					
 | 
				
			||||||
### Soft Delete
 | 
					### Soft Delete
 | 
				
			||||||
 | 
				
			|||||||
		Loading…
	
	
			
			x
			
			
		
	
		Reference in New Issue
	
	Block a user