소스 검색

Update src/babylon.types.ts

Co-Authored-By: barroij <barrois.julien@gmail.com>
David Catuhe 6 년 전
부모
커밋
602dd1c08c
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      src/babylon.types.ts

+ 1 - 1
src/babylon.types.ts

@@ -34,7 +34,7 @@ module BABYLON {
     type Primitive = undefined | null | boolean | string | number | Function;
 
     /**
-     * Type modififier to make all the properties of an object Readonly
+     * Type modifier to make all the properties of an object Readonly
      */
     export type Immutable<T> = T extends Primitive
       ? T