diff --git a/documentation/src/naming.md b/documentation/src/naming.md index b0bc3e0..57b68bd 100644 --- a/documentation/src/naming.md +++ b/documentation/src/naming.md @@ -73,7 +73,7 @@ Table following table gives you the rules for each identifier. | Method | PascalCase | | DrawSquare | | Properties | PascalCase | | FirstName | | Predicate method | PascalCase | Is\, Has\, Are\, Have\ | IsGreat, HasField | -| Public Member Variable | PascalCase | | Diameter | +| Public member variable | PascalCase | | Diameter | | Protected member variable | camelCase | _\ | _tableIndex | | Private member variable | camelCase | _\ | _adjacencyMatrix | | Local variable | camelCase | | index, name, helpLabel | @@ -81,7 +81,7 @@ Table following table gives you the rules for each identifier. | Class constant | PascalCase | | FilePath | | Enum type | PascalCase | | StatusType | | Enum value | PascalCase | | RequiredValue | -| Lambda Parametrs | camelCase or lower-case letter | | cornerPoint, c, name, n | +| Lambda parameters | camelCase or lower-case letter | | cornerPoint, c, name, n | ## UI Elements @@ -103,4 +103,4 @@ All delegate variables should be in camelCase without a prefix or postfix. All o ## Naming of Tests -The naming of tests must describe what the intended effect of the methods that are being tested, e.g. `ReturnsNullOnEmptySettings` or `ThrowsOnInvalidResponse`. \ No newline at end of file +The naming of tests must describe what the intended effect of the methods that are being tested, e.g. `ReturnsNullOnEmptySettings` or `ThrowsOnInvalidResponse`.