Change "not" usage to "!" in contribution guideline

Close #10158
This commit is contained in:
Scott Sumner 2021-07-14 08:04:42 -04:00 committed by Don Ho
parent 5e28b47ff8
commit 4cd293a0b1
1 changed files with 1 additions and 1 deletions

View File

@ -168,7 +168,7 @@ In short: The easier the code review is, the better the chance your pull request
* ###### Good:
```cpp
if (not string.empty())
if (!string.empty())
...
```