Suppose, you see a typo or logic error in a PR-
if(str == "somevalue"){
// do something
}Clearly, this is a forgivable (some might say unforgivable) developer oversight. Generaly, we add a comment to such PRs as follows-
Logic error. Change to str.equals()
But we can do better. How about suggesting a code change that can be incorpated directly from PR. To add a suggestion, do this instead-
```suggestion
if(str.equals("somevalue"){
```