mirror of
https://github.com/rust-lang/rust-analyzer
synced 2024-12-25 20:43:21 +00:00
Fix typo about De Morgan's law assist
This commit is contained in:
parent
fe8ec1c045
commit
e06ad80d49
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ fn example(x: bool) -> bool {
|
|||
|
||||
// after:
|
||||
fn example(x: bool) -> bool {
|
||||
!(x && !x)
|
||||
!(x && x)
|
||||
}
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in a new issue