aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorLúcás Meier <[email protected]>2019-10-04 11:45:22 +0100
committerGitHub <[email protected]>2019-10-04 11:45:22 +0100
commite06ad80d49f63c0c18a6447f39415a9ce900d9fa (patch)
tree6aebb4c7d1ea7dca2d7f37075148d3d98f1f5746 /docs
parentfe8ec1c045af7a41492d0df6d271f1ce56afb51b (diff)
Fix typo about De Morgan's law assist
Diffstat (limited to 'docs')
-rw-r--r--docs/user/features.md2
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:
178fn example(x: bool) -> bool { 178fn example(x: bool) -> bool {
179 !(x && !x) 179 !(x && x)
180} 180}
181``` 181```
182 182