docs: typo in db.delete (#26464)

This commit is contained in:
Ankush Menat 2024-05-17 13:02:23 +05:30 committed by GitHub
parent c353aae012
commit a1bd916cfa
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1268,7 +1268,7 @@ class Database:
def delete(self, doctype: str, filters: dict | list | None = None, debug=False, **kwargs):
"""Delete rows from a table in site which match the passed filters. This
does trigger DocType hooks. Simply runs a DELETE query in the database.
does not trigger DocType hooks. Simply runs a DELETE query in the database.
Doctype name can be passed directly, it will be pre-pended with `tab`.
"""