From 8887a1f5e322f40b411157cdfd5de75ed395bbac Mon Sep 17 00:00:00 2001 From: Shinsuke Sugita Date: Wed, 1 Mar 2017 16:57:53 +0900 Subject: [PATCH] fix typo (#846) recieve => receive --- spine-as3/spine-as3/src/spine/SkeletonJson.as | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-as3/spine-as3/src/spine/SkeletonJson.as b/spine-as3/spine-as3/src/spine/SkeletonJson.as index 6514f6780..643555156 100644 --- a/spine-as3/spine-as3/src/spine/SkeletonJson.as +++ b/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; }