Fix typo about De Morgan's law assist

This commit is contained in:
Lúcás Meier 2019-10-04 12:45:22 +02:00 committed by GitHub
parent fe8ec1c045
commit e06ad80d49
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -176,7 +176,7 @@ fn example(x: bool) -> bool {
// after:
fn example(x: bool) -> bool {
!(x && !x)
!(x && x)
}
```