diff options
-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 | ||