浏览代码

fix typo (#847)

receive is correct
Shinsuke Sugita 8 年之前
父节点
当前提交
30d52282af
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      spine-csharp/src/SkeletonJson.cs

+ 1 - 1
spine-csharp/src/SkeletonJson.cs

@@ -803,7 +803,7 @@ namespace Spine {
 
 		static float ToColor(String hexString, int colorIndex) {
 			if (hexString.Length != 8)
-				throw new ArgumentException("Color hexidecimal length must be 8, recieved: " + hexString, "hexString");
+				throw new ArgumentException("Color hexidecimal length must be 8, received: " + hexString, "hexString");
 			return Convert.ToInt32(hexString.Substring(colorIndex * 2, 2), 16) / (float)255;
 		}
 	}