Skip to content

Commit 96a3c06

Browse files
authored
Merge pull request #21 from OldemarCRC/patch-1
Update 3-defining-classes.md
2 parents 05d654c + 4ddbe8c commit 96a3c06

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

data/part-8/3-defining-classes.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ class NameOfClass:
2323
# class defition goes here
2424
```
2525

26-
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:
26+
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:
2727

2828
* `Weekday`
2929
* `BankAccount`

0 commit comments

Comments
 (0)