﻿# V7033\. Suspicious similar comparisons\. A typo may be present inside the expression\.

The analyzer has detected a suspicious condition that may contain a copy\-paste error\.

The example:

```cpp
if (_id !== id ||
    _email !== email || 
    _email !== name) { // <=
  ....
}
```

The comparison chain contains a typo: the error is in the third line, where the `name` variable should have been compared to `_name`, not to `_email`\.

The fixed code:

```cpp
if (_id !== id ||
    _email !== email || 
    _email !== name) { // <=
  ....
}
```