Skip to content

Commit 4c85e51

Browse files
authoredJun 22, 2020
Update README.md
1 parent cef537f commit 4c85e51

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed
 

‎Classes/README.md

+1-2
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,7 @@ Person x = new Person();
2121
### from static methods. A static method is attached to a class rather than an instance of a class / an object. When wanting to use a static method of the class
2222
### unlike an instance method, it has to declare an instance of the class in order for it to use the instance method. A static method can use the he method as soon
2323
### as it wants. We create instances of the class which create us branches. These branches are referred to as objects. Anytime we create a method within the class.
24-
### we create an instance of the class, the method we created is made available for use to us. An instance method is the complete opposite of a static method. An
25-
### instance method is attached to the instances.
24+
### we create an instance of the class, the method we created is made available for use to us. An instance method is the complete opposite of a static method. An instance method is attached to the instances.
2625

2726
Say I do this
2827
Animal bear = new Animal();

0 commit comments

Comments
 (0)