We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 92b9e20 commit 445bbbeCopy full SHA for 445bbbe
2 files changed
LibGit2Sharp/ContentChanges.cs
@@ -55,9 +55,15 @@ internal void AppendToPatch(string patch)
55
/// </summary>
56
public virtual int LinesDeleted { get; internal set; }
57
58
- public List<Line> AddedLines { get; internal set; }
+ /// <summary>
59
+ /// Lis of all lines added.
60
+ /// </summary>
61
+ public virtual List<Line> AddedLines { get; internal set; }
62
- public List<Line> DeletedLines { get; internal set; }
63
64
+ /// List of all lines deleted.
65
66
+ public virtual List<Line> DeletedLines { get; internal set; }
67
68
69
/// <summary>
LibGit2Sharp/Core/Line.cs LibGit2Sharp/Line.csLibGit2Sharp/Core/Line.cs renamed to LibGit2Sharp/Line.cs
@@ -2,7 +2,7 @@
2
using System.Collections.Generic;
3
using System.Text;
4
5
-namespace LibGit2Sharp.Core
+namespace LibGit2Sharp
6
{
7
public struct Line
8
0 commit comments