Skip to content

Commit d9fb661

Browse files
committed
corrected typo for objects/prototype
1 parent e621e30 commit d9fb661

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

objects/prototype.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ var adult = {age: 26},
99
retrievedProperty = adult.age;
1010
// The line above
1111
```
12-
Firsty, the interpreter looks through every property the object itself has. For example, `adult` has only one own property — `age`. But besides that one it actually has a few more properties, which were inherited from Object.prototype.
12+
First, the interpreter looks through every property the object itself has. For example, `adult` has only one own property — `age`. But besides that one it actually has a few more properties, which were inherited from Object.prototype.
1313
```js
1414
var stringRepresentation = adult.toString();
1515
// the variable has value of '[object Object]'

0 commit comments

Comments
 (0)