Skip to content

Commit 3d8eca6

Browse files
committed
Merge pull request GitbookIO#63 from eubenesa/typos
Typos
2 parents e621e30 + f828f10 commit 3d8eca6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

objects/global_footprint.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# Global footprint
2-
If you are developing an module, which might be running on a web page, which also runs other mudules, then you must beware the variable name overlapping.
2+
If you are developing a module, which might be running on a web page, which also runs other modules, then you must beware the variable name overlapping.
33

44
Suppose we are developing a counter module:
55
```js

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)