mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-13 21:54:42 +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:
|
// after:
|
||||||
fn example(x: bool) -> bool {
|
fn example(x: bool) -> bool {
|
||||||
!(x && !x)
|
!(x && x)
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue