Fixed invalid syntax in some loader file type documentation examples (#3873).

This commit is contained in:
Chris Andrew 2018-07-30 18:52:53 +01:00
parent a8b605f42d
commit 3141510fdf
4 changed files with 24 additions and 24 deletions

View file

@ -98,7 +98,7 @@ var TextFile = new Class({
* ```javascript
* function preload ()
* {
* this.load.text('story', files/IntroStory.txt');
* this.load.text('story', 'files/IntroStory.txt');
* }
* ```
*

View file

@ -116,7 +116,7 @@ var TilemapCSVFile = new Class({
* ```javascript
* function preload ()
* {
* this.load.tilemapCSV('level1', maps/Level1.csv');
* this.load.tilemapCSV('level1', 'maps/Level1.csv');
* }
* ```
*

View file

@ -77,7 +77,7 @@ var TilemapImpactFile = new Class({
* ```javascript
* function preload ()
* {
* this.load.tilemapImpact('level1', maps/Level1.json');
* this.load.tilemapImpact('level1', 'maps/Level1.json');
* }
* ```
*

View file

@ -77,7 +77,7 @@ var TilemapJSONFile = new Class({
* ```javascript
* function preload ()
* {
* this.load.tilemapTiledJSON('level1', maps/Level1.json');
* this.load.tilemapTiledJSON('level1', 'maps/Level1.json');
* }
* ```
*