From 4d3e2d2916a051ddc2868fbeb1d1a4674a61ae28 Mon Sep 17 00:00:00 2001 From: mk-mxp <55182845+mk-mxp@users.noreply.github.com> Date: Sun, 31 Mar 2024 17:21:05 +0200 Subject: [PATCH] Fix "class names" in Basics long concept text (#671) --- concepts/basic-syntax/about.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/concepts/basic-syntax/about.md b/concepts/basic-syntax/about.md index c9b1e391..5dc5a6d7 100644 --- a/concepts/basic-syntax/about.md +++ b/concepts/basic-syntax/about.md @@ -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.