summaryrefslogtreecommitdiffstats
path: root/src/tools/clippy/src/docs/suspicious_unary_op_formatting.txt
blob: 06fb09db76d0c3ebc057d55deeb1741b3ecc2e99 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
### What it does
Checks the formatting of a unary operator on the right hand side
of a binary operator. It lints if there is no space between the binary and unary operators,
but there is a space between the unary and its operand.

### Why is this bad?
This is either a typo in the binary operator or confusing.

### Example
```
// &&! looks like a different operator
if foo &&! bar {}
```

Use instead:
```
if foo && !bar {}
```