Skip to content

Commit 18d4b9e

Browse files
authored
docs: fix typo in querying.rst (#204)
1 parent 9a36d9e commit 18d4b9e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/usage/querying.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ Print unique identification (Id) of all employees with name John Smith:
5959
from pyodata.v2.service import GetEntitySetFilter as esf
6060
6161
smith_employees_request = northwind.entity_sets.Employees.get_entities()
62-
smith_employees_request = smith_employees_request.filter(sef.and_(
62+
smith_employees_request = smith_employees_request.filter(esf.and_(
6363
smith_employees_request.FirstName == 'Jonh',
6464
smith_employees_request.LastName == 'Smith'))
6565
for smith in smith_employees_request.execute():

0 commit comments

Comments
 (0)