diff options
author | Lúcás Meier <[email protected]> | 2019-10-04 11:45:22 +0100 |
---|---|---|
committer | GitHub <[email protected]> | 2019-10-04 11:45:22 +0100 |
commit | e06ad80d49f63c0c18a6447f39415a9ce900d9fa (patch) | |
tree | 6aebb4c7d1ea7dca2d7f37075148d3d98f1f5746 /docs/user | |
parent | fe8ec1c045af7a41492d0df6d271f1ce56afb51b (diff) |
Fix typo about De Morgan's law assist
Diffstat (limited to 'docs/user')
-rw-r--r-- | docs/user/features.md | 2 |
1 files changed, 1 insertions, 1 deletions
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 { | |||
176 | 176 | ||
177 | // after: | 177 | // after: |
178 | fn example(x: bool) -> bool { | 178 | fn example(x: bool) -> bool { |
179 | !(x && !x) | 179 | !(x && x) |
180 | } | 180 | } |
181 | ``` | 181 | ``` |
182 | 182 | ||