浏览代码

fix comment typo

Julien Barrois 6 年之前
父节点
当前提交
4298d32259
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      src/Tools/babylon.tools.ts

+ 1 - 1
src/Tools/babylon.tools.ts

@@ -589,7 +589,7 @@ module BABYLON {
         /**
          * Returns an array of the given size filled with element built from the given constructor and the paramters
          * @param size the number of element to construct and put in the array
-         * @param itemBuilder a callback responsable for creating new instance of item. Called once per array entry.
+         * @param itemBuilder a callback responsible for creating new instance of item. Called once per array entry.
          * @returns a new array filled with new objects
          */
         public static BuildArray<T>(size: number, itemBuilder: () => T): Array<T> {