Skip to content

Commit 713d431

Browse files
committed
Fixed #2 - recommendation about naming conventions to use
1 parent 93a09bf commit 713d431

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -31,8 +31,8 @@ or
3131
}
3232
3333
```
34-
35-
2. For readablity please insert spaces after comma in argument list, i.e.
34+
2. Use the reasonable name convention which is consistent across hierarchy. We recommend to use CamelCase for classes, methods and properties (e.g. `Sample.Person`, `OpenFile`, `LastIndex`, etc.), but smallCamelCase for local variables (e.g. `startDate`, `endDate`), but please be consistent and use local schea if it's different thancurrent recommendation.
35+
3. For better readablity please insert spaces after comma in argument list, i.e.
3636
```
3737
Write 1, 2, 3
3838
Do ..Method(Arg1, Arg2, Arg3)

0 commit comments

Comments
 (0)