Skip to content

Commit 5d3f223

Browse files
allan-cedricphanak-sap
authored andcommitted
docs: fix a NameError in querying.rst
1 parent 65db1af commit 5d3f223

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
@@ -45,7 +45,7 @@ Print unique identification (Id) of all employees with name John Smith:
4545
smith_employees_request = northwind.entity_sets.Employees.get_entities()
4646
smith_employees_request = smith_employees_request.filter("FirstName eq 'John' and LastName eq 'Smith'")
4747
48-
for smith in smith_employees.execute():
48+
for smith in smith_employees_request.execute():
4949
print(smith.EmployeeID)
5050
5151

0 commit comments

Comments
 (0)