Skip to content

Commit 0003ab8

Browse files
authored
Update README.md
1 parent 4980cc9 commit 0003ab8

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
@@ -7,8 +7,7 @@
77
## - a talk method
88

99

10-
### The above idea is a structure of a person which is known as a class. To create a new person, all we have to do is instantiate the class. This process is called
11-
### an object. The class is the blueprint and the object is the specific example. A class allows us to create different entities which are similar in structure.
10+
### The above idea is a structure of a person which is known as a class. To create a new person, all we have to do is instantiate the class. When we instantiate a class we are creating what's called an object. The class is the blueprint and the object is the specific example. A class allows us to create different entities which are similar in structure.
1211
### Classes will defined within a file and objects will be defined as variables.
1312
```
1413
Person x = new Person();

0 commit comments

Comments
 (0)