From 4ddbe8cff3d39a8314165af8815cfa258d747662 Mon Sep 17 00:00:00 2001 From: Jose Oldemar Chaves Urbina <72102769+OldemarCRC@users.noreply.github.com> Date: Tue, 25 Feb 2025 12:27:39 +0200 Subject: [PATCH] Update 3-defining-classes.md Classes usually named in PascalCase and not camelCase. --- data/part-8/3-defining-classes.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/data/part-8/3-defining-classes.md b/data/part-8/3-defining-classes.md index 8dbdad8c..4f494391 100644 --- a/data/part-8/3-defining-classes.md +++ b/data/part-8/3-defining-classes.md @@ -23,7 +23,7 @@ class NameOfClass: # class defition goes here ``` -Classes are usually named in _camel case_. This means that all the words in the class name are written together, without spaces, and each word is capitalised. The following class names follow this convention: +Classes are usually named in _PascalCase_, also known as _UpperCamelCase_. This means that all the words in the class name are written together, without spaces, and each word is capitalised. The following class names follow this convention: * `Weekday` * `BankAccount`