From e06ad80d49f63c0c18a6447f39415a9ce900d9fa Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=BAc=C3=A1s=20Meier?= Date: Fri, 4 Oct 2019 12:45:22 +0200 Subject: Fix typo about De Morgan's law assist --- docs/user/features.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'docs') diff --git a/docs/user/features.md b/docs/user/features.md index f89d8c489..0ce8f577b 100644 --- a/docs/user/features.md +++ b/docs/user/features.md @@ -176,7 +176,7 @@ fn example(x: bool) -> bool { // after: fn example(x: bool) -> bool { - !(x && !x) + !(x && x) } ``` -- cgit v1.2.3