Просмотр исходного кода

Merge pull request #6964 from thebravoman/master

AbstractScene#materials has two typos in JSDoc
David Catuhe 5 лет назад
Родитель
Сommit
8b339dc9c3
1 измененных файлов с 2 добавлено и 2 удалено
  1. 2 2
      src/abstractScene.ts

+ 2 - 2
src/abstractScene.ts

@@ -158,8 +158,8 @@ export abstract class AbstractScene {
     /**
     * All of the materials added to this scene
     * In the context of a Scene, it is not supposed to be modified manually.
-    * Any addition or removal should be done using the addMaterial and removeMAterial Scene methods.
-    * Note also that the order of the Material wihin the array is not significant and might change.
+    * Any addition or removal should be done using the addMaterial and removeMaterial Scene methods.
+    * Note also that the order of the Material within the array is not significant and might change.
     * @see http://doc.babylonjs.com/babylon101/materials
     */
     public materials = new Array<Material>();