NathanSweet преди 9 години
родител
ревизия
e2c870ff0c
променени са 2 файла, в които са добавени 2 реда и са изтрити 2 реда
  1. 1 1
      spine-csharp/src/Attachments/VertexAttachment.cs
  2. 1 1
      spine-ts/core/src/SkeletonJson.ts

+ 1 - 1
spine-csharp/src/Attachments/VertexAttachment.cs

@@ -32,7 +32,7 @@ using System;
 using System.Collections.Generic;
 
 namespace Spine {
-	/// <summary>>An attachment with vertices that are transformed by one or more bones and can be deformed by a slot's vertices.</summary> 
+	/// <summary>An attachment with vertices that are transformed by one or more bones and can be deformed by a slot's vertices.</summary> 
 	public class VertexAttachment : Attachment {
 		internal int[] bones;
 		internal float[] vertices;

+ 1 - 1
spine-ts/core/src/SkeletonJson.ts

@@ -38,7 +38,7 @@ module spine {
 			this.attachmentLoader = attachmentLoader;
 		}
 
-		readSkeletonData (json: string | any ): SkeletonData {
+		readSkeletonData (json: string | any): SkeletonData {
 			let scale = this.scale;
 			let skeletonData = new SkeletonData();
 			let root = typeof(json) === "string" ? JSON.parse(json) : json;