Skip to content

Commit

Permalink
Improved XML documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
abjerner committed Jan 22, 2017
1 parent e7ac694 commit 18fe771
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/Skybrud.Umbraco.GridData/Json/GridJsonObject.cs
Original file line number Diff line number Diff line change
Expand Up @@ -5,15 +5,15 @@
namespace Skybrud.Umbraco.GridData.Json {

/// <summary>
/// Class representing an object derived from an instance of <code>JObject</code>.
/// Class representing an object derived from an instance of <see cref="JObject"/>.
/// </summary>
[JsonConverter(typeof(GridJsonConverter))]
public class GridJsonObject {

#region Properties

/// <summary>
/// Gets a reference to the underlying instance of <code>JObject</code>.
/// Gets a reference to the underlying instance of <see cref="JObject"/>.
/// </summary>
[JsonIgnore]
public JObject JObject { get; private set; }
Expand All @@ -22,7 +22,7 @@ public class GridJsonObject {

#region Constructors

/// <param name="obj">The underlying instance of <code>JObject</code>.</param>
/// <param name="obj">The underlying instance of <see cref="JObject"/>.</param>
public GridJsonObject(JObject obj) {
JObject = obj;
}
Expand Down

0 comments on commit 18fe771

Please sign in to comment.