Skip to content

Commit

Permalink
Fix a typo in README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
hason-msft committed May 24, 2016
1 parent a63c3de commit 8b6fa46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,7 @@ var query = new azure.TableQuery()
.top(5)
.where('PartitionKey eq ?', 'part2');

tableSvc.queryEntities('mytable', query, null, function(error, result, response) {
tableService.queryEntities('mytable', query, null, function(error, result, response) {
if (!error) {
// result.entries contains entities matching the query
}
Expand Down

0 comments on commit 8b6fa46

Please sign in to comment.