Skip to content

Commit 999d586

Browse files
authored
Merge pull request #325 from timgates42/bugfix_typo_amount
docs: Fix simple typo, ammount -> amount
2 parents 416db50 + 930ba01 commit 999d586

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

examples/Game/Ship.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@
101101
}
102102

103103
p.accelerate = function () {
104-
//increase push ammount for acceleration
104+
//increase push amount for acceleration
105105
this.thrust += this.thrust + 0.6;
106106
if (this.thrust >= Ship.MAX_THRUST) {
107107
this.thrust = Ship.MAX_THRUST;
@@ -118,4 +118,4 @@
118118

119119
window.Ship = createjs.promote(Ship, "Container");
120120

121-
}(window));
121+
}(window));

examples/Game/SpaceRock.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
p.bounds; //visual radial size
1919
p.hit; //average radial disparity
2020
p.size; //size value itself
21-
p.spin; //spin ammount
21+
p.spin; //spin amount
2222
p.score; //score value
2323

2424
p.vX; //velocity X

0 commit comments

Comments
 (0)