From 18fe77111ceb62918a1230e0e5cce66057855927 Mon Sep 17 00:00:00 2001 From: Anders Bjerner Date: Sun, 22 Jan 2017 13:45:18 +0100 Subject: [PATCH] Improved XML documentation --- src/Skybrud.Umbraco.GridData/Json/GridJsonObject.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/Skybrud.Umbraco.GridData/Json/GridJsonObject.cs b/src/Skybrud.Umbraco.GridData/Json/GridJsonObject.cs index 1d6f172..a2f0620 100644 --- a/src/Skybrud.Umbraco.GridData/Json/GridJsonObject.cs +++ b/src/Skybrud.Umbraco.GridData/Json/GridJsonObject.cs @@ -5,7 +5,7 @@ namespace Skybrud.Umbraco.GridData.Json { /// - /// Class representing an object derived from an instance of JObject. + /// Class representing an object derived from an instance of . /// [JsonConverter(typeof(GridJsonConverter))] public class GridJsonObject { @@ -13,7 +13,7 @@ public class GridJsonObject { #region Properties /// - /// Gets a reference to the underlying instance of JObject. + /// Gets a reference to the underlying instance of . /// [JsonIgnore] public JObject JObject { get; private set; } @@ -22,7 +22,7 @@ public class GridJsonObject { #region Constructors - /// The underlying instance of JObject. + /// The underlying instance of . public GridJsonObject(JObject obj) { JObject = obj; }