Skip to content

Commit

Permalink
Add missing doc comment
Browse files Browse the repository at this point in the history
  • Loading branch information
praeclarum committed Aug 20, 2018
1 parent 67b1bb2 commit b574be2
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions ListDiff/ListDiff.cs
Original file line number Diff line number Diff line change
Expand Up @@ -190,6 +190,10 @@ void GenDiff (int[,] c, IList<S> x, IList<D> y, int i, int j, Func<S, D, bool> m
}
}

/// <summary>
/// Returns a <see cref="T:System.String"/> that represents the current <see cref="T:ListDiff.ListDiff`2"/>.
/// </summary>
/// <returns>A <see cref="T:System.String"/> that represents the current <see cref="T:ListDiff.ListDiff`2"/>.</returns>
public override string ToString ()
{
var sb = new StringBuilder ();
Expand Down

0 comments on commit b574be2

Please sign in to comment.