Skip to content

Commit 4900c79

Browse files
authored
Language edit
1 parent d1f2a25 commit 4900c79

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

python-class/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Python Classes: The Power of Object-Oriented Programming
22

3-
This folder provides the code examples for the article [Python Classes: The Power of Object-Oriented Programming](https://realpython.com/python-classes/).
3+
This folder provides the code examples for the Real Python tutorial [Python Classes: The Power of Object-Oriented Programming](https://realpython.com/python-classes/).

python-class/employee.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33

44
class Employee:
5-
company = "Example Inc."
5+
company = "Example, Inc."
66

77
def __init__(self, name, birth_date):
88
self.name = name

0 commit comments

Comments
 (0)