Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion concepts/basic-syntax/about.md
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ $sum = add(1, 2);

## Naming conventions

Classnames should all be `PascalCase`.
Class names should all be `PascalCase`.
Depending on the style standard; variables, functions, and method names may be either `camelCase` or `snake_case`.
Names may contain letters `a-zA-Z`, numbers `0-9`, and underscores `_` but they cannot start with a number.

Expand Down