Skip to content

Commit

Permalink
Fixed typo (#400)
Browse files Browse the repository at this point in the history
  • Loading branch information
zulander1 authored Jul 24, 2023
1 parent 0846742 commit 3e24a2e
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 @@ -285,7 +285,7 @@ customers.Where(x => x.LastName == "Bond" || x.Age > 65);
customers.Where(x => x.LastName == "Bond" && x.FirstName == "James");

// Find all customers with the nickname of Jim
customer.Where(x=>x.NickNames.Contains("Jim"));
customers.Where(x=>x.NickNames.Contains("Jim"));
```

### 🖩 Aggregations
Expand Down

0 comments on commit 3e24a2e

Please sign in to comment.