Skip to content

Commit

Permalink
Fixed #107 : Argument type mismatch in documenation
Browse files Browse the repository at this point in the history
  • Loading branch information
obiot committed Oct 1, 2012
1 parent cbfdb81 commit 217527f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/level/TMXLayer.js
Original file line number Diff line number Diff line change
Expand Up @@ -412,8 +412,8 @@
* @name me.TiledLayer#getTileId
* @public
* @function
* @param {Integer} x x position
* @param {Integer} y y position
* @param {Integer} x x coordinate in pixel
* @param {Integer} y y coordinate in pixel
* @return {Int} TileId
*/
getTileId : function(x, y) {
Expand All @@ -426,8 +426,8 @@
* @name me.TiledLayer#getTile
* @public
* @function
* @param {Integer} x x position
* @param {Integer} y y position
* @param {Integer} x x coordinate in pixel
* @param {Integer} y y coordinate in pixel
* @return {me.Tile} Tile Object
*/
getTile : function(x, y) {
Expand All @@ -439,8 +439,8 @@
* @name me.TiledLayer#setTile
* @public
* @function
* @param {Integer} x x position
* @param {Integer} y y position
* @param {Integer} x x coordinate in tile
* @param {Integer} y y coordinate in tile
* @param {Integer} tileId tileId
*/
setTile : function(x, y, tileId) {
Expand All @@ -452,8 +452,8 @@
* @name me.TiledLayer#clearTile
* @public
* @function
* @param {Integer} x x position
* @param {Integer} y y position
* @param {Integer} x x coordinate in tile
* @param {Integer} y y coordinate in tile
*/
clearTile : function(x, y) {
// clearing tile
Expand Down

0 comments on commit 217527f

Please sign in to comment.