From 30d52282af53b5759e2fb432c2872a466044cdc3 Mon Sep 17 00:00:00 2001 From: Shinsuke Sugita Date: Wed, 1 Mar 2017 16:58:11 +0900 Subject: [PATCH] fix typo (#847) receive is correct --- spine-csharp/src/SkeletonJson.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spine-csharp/src/SkeletonJson.cs b/spine-csharp/src/SkeletonJson.cs index bbcb973be..d42c45a4e 100644 --- a/spine-csharp/src/SkeletonJson.cs +++ b/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; } }