Skip to content

Commit

Permalink
Update migration_guide.md (Azure#20428)
Browse files Browse the repository at this point in the history
fixed small type-o in query example.
  • Loading branch information
SiddyP authored Oct 7, 2021
1 parent 7c0dce9 commit d1c2808
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sdk/tables/azure-data-tables/migration_guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ service_client = TableServiceClient.from_connection_string(conn_str)
for table in service_client.list_tables():
print(table.name)

query_filter = "TableName eq @name1 or TableName gt @name2'
query_filter = "TableName eq @name1 or TableName gt @name2"
parameters = {
"name1": "myTableName1",
"name2": "myTableName2",
Expand Down

0 comments on commit d1c2808

Please sign in to comment.