From 2575707871b47c4f4fac9156d3f512a2752f991b Mon Sep 17 00:00:00 2001 From: Michael Kramer Date: Sun, 31 Mar 2024 16:53:10 +0200 Subject: [PATCH] Fix "class names" in long concept text --- 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.