From dc9e72c1d71b668c5ba2d456c60fb4000067d2ca Mon Sep 17 00:00:00 2001 From: Suraj Devatha <42767118+surajdm123@users.noreply.github.com> Date: Thu, 26 Jun 2025 23:31:08 -0700 Subject: [PATCH] Update README.md in Section 4 Closes #1 --- section4/README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/section4/README.md b/section4/README.md index 2a7aa2c..5d44f24 100644 --- a/section4/README.md +++ b/section4/README.md @@ -175,7 +175,7 @@ public class Employee { } ``` -If the method is Non-Static and present inside the same calss then call that method with ObjectReferenceVariable.methodName() +If the method is Non-Static and present inside the same class then call that method with ObjectReferenceVariable.methodName() ```java public class AithmeticOperations { @@ -193,7 +193,7 @@ public class AithmeticOperations { } ``` -If the method is Non-Static and present outside calss then call that method with ObjectReferenceVariable.methodName() +If the method is Non-Static and present outside class then call that method with ObjectReferenceVariable.methodName() ```java public class AithmeticOperations {