phaserjs / phaser

Phaser is a fun, free and fast 2D game framework for making HTML5 games for desktop and mobile web browsers, supporting Canvas and WebGL rendering.
https://phaser.io
MIT License
37.22k stars 7.1k forks source link

There are some missing ' in the docs #3873

Closed yudikubota closed 6 years ago

yudikubota commented 6 years ago

I spotted that there are some missing characters in the docs. Affected files:

src/loader/filetypes/TilemapImpactFile.js
src/loader/filetypes/TextFile.js
src/loader/filetypes/TilemapCSVFile.js
src/loader/filetypes/TextFile.js
src/loader/filetypes/TilemapJSONFile.js
function preload ()
{
    this.load.tilemapCSV('level1', maps/Level1.csv');
}

For example: https://photonstorm.github.io/phaser3-docs/Phaser.Loader.LoaderPlugin.html#tilemapCSV__anchor

hexus commented 6 years ago

Thanks for spotting these, I'll fix them this evening.

hexus commented 6 years ago

These have been fixed. I went over all the loader file type descriptions (crikey, they're long and duplicated!) just to make sure there weren't any other instances of this, and found one in the HTMLFile type.

This will be included in the next release.

Cheers!