ソースを参照

fix typo (#846)

recieve => receive
Shinsuke Sugita 8 年 前
コミット
8887a1f5e3
1 ファイル変更1 行追加1 行削除
  1. 1 1
      spine-as3/spine-as3/src/spine/SkeletonJson.as

+ 1 - 1
spine-as3/spine-as3/src/spine/SkeletonJson.as

@@ -688,7 +688,7 @@ public class SkeletonJson {
 	}
 
 	static private function toColor (hexString:String, colorIndex:int) : Number {
-		if (hexString.length != 8) throw new ArgumentError("Color hexidecimal length must be 8, recieved: " + hexString);
+		if (hexString.length != 8) throw new ArgumentError("Color hexidecimal length must be 8, received: " + hexString);
 		return parseInt(hexString.substring(colorIndex * 2, colorIndex * 2 + 2), 16) / 255;
 	}