From 7d58f621394825c47c8156fee14517af227466d5 Mon Sep 17 00:00:00 2001 From: Eduard Kaverinskyi Date: Sat, 8 Feb 2025 17:55:12 +0100 Subject: [PATCH] 17.SOLID.md fix typo "inheritance" Fixes "inheritacne" -> "inheritance" --- 17.SOLID.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/17.SOLID.md b/17.SOLID.md index 34754d1..30f0a97 100644 --- a/17.SOLID.md +++ b/17.SOLID.md @@ -378,7 +378,7 @@ class FaxMachine: def fax_document(self, document): pass -# Yes! That's where multiple inheritacne comes in use +# Yes! That's where multiple inheritance comes in use class AllInOneMachine(Printer, Scanner, FaxMachine): def print_document(self, document): # Print the document