Fixed naming conventions examples

This commit is contained in:
Stone-Red-Code
2021-07-09 11:39:10 +02:00
parent 9e07fa33fa
commit f7c562c383
@@ -71,6 +71,7 @@ Do not use Hungarian notation or any other type identification in identifiers.
//Do:
int age;
string name;
//Don't:
int iAge;
string strName;
@@ -82,7 +83,8 @@ Use meaningful names for variables.
//Do:
string factoryName;
int age;
//Don't
//Don't:
string str;
int i;
```