Skip to content

Commit 5c8d291

Browse files
committed
docs fixes
1 parent 3eeffe4 commit 5c8d291

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

changelog/4.0/CHANGELOG-v4.0-rc.6.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -30,3 +30,6 @@
3030
Thanks to the following for helping with the Phaser Examples, Beta Testing, Docs, and TypeScript definitions, either by reporting errors, fixing them, or helping author the docs:
3131

3232
@chavaenc
33+
@Urantij
34+
@justin-calleja
35+
@DayKev

src/math/Wrap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
*/
66

77
/**
8-
* Wrap the given `value` between `min` and `max`.
8+
* Wrap the given `value` between `min` and `max - 1`.
99
*
1010
* @function Phaser.Math.Wrap
1111
* @since 3.0.0

src/structs/ProcessQueue.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ var Events = require('./events');
1717
* The `destroy` list is a selection of items that were active and are awaiting being destroyed in the next update.
1818
*
1919
* When new items are added to a Process Queue they are put in the pending list, rather than being added
20-
* immediately the active list. Equally, items that are removed are put into the destroy list, rather than
20+
* immediately to the active list. Equally, items that are removed are put into the destroy list, rather than
2121
* being destroyed immediately. This allows the Process Queue to carefully process each item at a specific, fixed
2222
* time, rather than at the time of the request from the API.
2323
*

0 commit comments

Comments
 (0)