summaryrefslogtreecommitdiffstats
path: root/README.md
diff options
context:
space:
mode:
authorMatthias Beyer <mail@beyermatthias.de>2016-08-12 13:17:20 +0200
committerMatthias Beyer <mail@beyermatthias.de>2016-08-12 13:17:20 +0200
commit8aff83ef4337e581da66c5fa6f77ad985b3d155f (patch)
treec7d2b7f14d6dc316bef0757a0222288c9daa7938 /README.md
parentcd1677b674550c6275d18570ce322ddb75d28610 (diff)
Remove false comment in example
Diffstat (limited to 'README.md')
-rw-r--r--README.md1
1 files changed, 0 insertions, 1 deletions
diff --git a/README.md b/README.md
index 1d95a91..a25fca9 100644
--- a/README.md
+++ b/README.md
@@ -15,7 +15,6 @@ let not_eq_to_two = |&a: &usize| { a != 2 };
let not_eq_to_three = |&a: &usize| { a != 3 };
let a = not_eq_to_one.and(not_eq_to_two).and(not_eq_to_three);
-// We now have ((a > 5) && !(a < 20)) || a == 10
assert_eq!(a.filter(&21), true);
```