From 8ab718a5811c1081de086a1b6f99fb621e30dec4 Mon Sep 17 00:00:00 2001 From: Klemek Date: Wed, 21 Feb 2018 18:58:59 +0100 Subject: [PATCH] Update README.md --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index e2a0a3a..2fe3ede 100644 --- a/README.md +++ b/README.md @@ -22,8 +22,8 @@ With BetterLists : BetterArrayList contacts = BetterArrayList.fromList(someFunction()); BetterList contactsEmails = contacts.skip(5) - .where(c -> c.getEmail() != null) - .select(c -> c.getEmail()); + .where(c -> c.getEmail() != null) + .select(c -> c.getEmail()); ``` NOTE : Please note that, unlike C# LINQ, these functions are not optimized at low levels and will have the same impact as standard loops in your program. @@ -192,4 +192,4 @@ Filters a sequence of values based on a predicate. BetterArrayList contacts = BetterArrayList.fromList(someFunction()); BetterList validContacts = contacts.where(c -> c.getEmail() != null); -``` \ No newline at end of file +```