소스 검색

Fix spelling error in error mesage in Animation.hx (#1111)

instanciate -> instantiate
TZer0 2 년 전
부모
커밋
3f02d246a0
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      h3d/anim/Animation.hx

+ 2 - 2
h3d/anim/Animation.hx

@@ -209,7 +209,7 @@ class Animation {
 
 	public function update(dt:Float) : Float {
 		if( !isInstance )
-			throw "You must instanciate this animation first";
+			throw "You must instantiate this animation first";
 
 		if( !isPlaying() )
 			return 0;
@@ -282,4 +282,4 @@ class Animation {
 		return name;
 	}
 
-}
+}