Use right terminology

Close #9160
This commit is contained in:
Anil Seervi 2020-11-15 14:04:21 +05:30 committed by Don HO
parent f304a239ca
commit 94673532cf
No known key found for this signature in database
GPG Key ID: 6C429F1D8D84F46E
1 changed files with 2 additions and 2 deletions

View File

@ -274,12 +274,12 @@ Any member variable name of class/struct should be preceded by an underscore.
};
```
3. ##### Prefer this form:
3. ##### Prefer Pre-increment:
```cpp
++i
```
**to:**
##### **Over Post-increment:**
```cpp
i++
```