Browse Source

fix typo (#847)

receive is correct
Shinsuke Sugita 8 years ago
parent
commit
30d52282af
1 changed files with 1 additions and 1 deletions
  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) {
 		static float ToColor(String hexString, int colorIndex) {
 			if (hexString.Length != 8)
 			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;
 			return Convert.ToInt32(hexString.Substring(colorIndex * 2, 2), 16) / (float)255;
 		}
 		}
 	}
 	}