Skip to content

Commit

Permalink
Misspelling corrected
Browse files Browse the repository at this point in the history
  • Loading branch information
PrafulB committed Feb 17, 2024
1 parent 574717a commit 7709ab9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion imagebox3.mjs
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ const imagebox3 = (() => {
const parsedTileParams = utils.parseTileParams(tileParams)
const { tileX, tileY, tileWidth, tileHeight, tileSize } = parsedTileParams

if (!Number.isInteger(tileX) || !Number.isIntegoer(tileY) || !Number.isInteger(tileWidth) || !Number.isInteger(tileHeight) || !Number.isInteger(tileSize)) {
if (!Number.isInteger(tileX) || !Number.isInteger(tileY) || !Number.isInteger(tileWidth) || !Number.isInteger(tileHeight) || !Number.isInteger(tileSize)) {
console.error("Tile Request missing critical parameters!", tileX, tileY, tileWidth, tileHeight, tileSize)
return
}
Expand Down

0 comments on commit 7709ab9

Please sign in to comment.