Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python-built-in-functions/README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
# Python's Built-in Functions: A Complete Exploration
# Python Built-in Functions: A Complete Guide

This folder provides the code examples for the Real Python tutorial [Python's Built-in Functions: A Complete Exploration](https://realpython.com/python-built-in-functions/).
This folder provides the code examples for the Real Python tutorial [Python Built-in Functions: A Complete Guide](https://realpython.com/python-built-in-functions/).
2 changes: 1 addition & 1 deletion python-built-in-functions/fibonacci.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
class Fibonaccish:
class Fibonacci:
def __init__(self, initial_value=1):
self._cache = [0, initial_value]

Expand Down
4 changes: 2 additions & 2 deletions python-built-in-functions/shapes.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ def perimeter(self):


class Square(Rectangle):
def __init__(self, length):
super().__init__(length, length)
def __init__(self, side):
super().__init__(side, side)
Loading