diff --git a/spine-csharp/src/Attachments/VertexAttachment.cs b/spine-csharp/src/Attachments/VertexAttachment.cs
index 04458a948..64f8d5bc5 100644
--- a/spine-csharp/src/Attachments/VertexAttachment.cs
+++ b/spine-csharp/src/Attachments/VertexAttachment.cs
@@ -32,7 +32,7 @@ using System;
using System.Collections.Generic;
namespace Spine {
- /// >An attachment with vertices that are transformed by one or more bones and can be deformed by a slot's vertices.
+ /// An attachment with vertices that are transformed by one or more bones and can be deformed by a slot's vertices.
public class VertexAttachment : Attachment {
internal int[] bones;
internal float[] vertices;
diff --git a/spine-ts/core/src/SkeletonJson.ts b/spine-ts/core/src/SkeletonJson.ts
index e5b301d07..79b42b47f 100644
--- a/spine-ts/core/src/SkeletonJson.ts
+++ b/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;