From b1eb20d9fd9a42910e8c14273f5e8265b3ba62b3 Mon Sep 17 00:00:00 2001 From: eqsdxr <157279130+eqsdxr@users.noreply.github.com> Date: Sun, 16 Feb 2025 09:58:19 +0000 Subject: [PATCH] Fix small typos --- .../object-oriented-programming@P_Di-XPSDITmU3xKQew8G.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/data/roadmaps/python/content/object-oriented-programming@P_Di-XPSDITmU3xKQew8G.md b/src/data/roadmaps/python/content/object-oriented-programming@P_Di-XPSDITmU3xKQew8G.md index ddb193ee5..413cc2603 100644 --- a/src/data/roadmaps/python/content/object-oriented-programming@P_Di-XPSDITmU3xKQew8G.md +++ b/src/data/roadmaps/python/content/object-oriented-programming@P_Di-XPSDITmU3xKQew8G.md @@ -1,6 +1,6 @@ # OOP -In Python, object-oriented Programming (OOPs) is a programming paradigm that uses objects and classes in programming. It aims to implement real-world entities like inheritance, polymorphisms, encapsulation, etc. in the programming. The main concept of OOPs is to bind the data and the functions that work on that together as a single unit so that no other part of the code can access this data. +In Python, object-oriented Programming (OOPs) is a programming paradigm that uses objects and classes in programming. It aims to implement real-world entities like inheritance, polymorphism, encapsulation, etc., in programming. The main concept of OOPs is to bind the data and the functions that work on that together as a single unit so that no other part of the code can access this data. Visit the following resources to learn more: