File tree 2 files changed +5
-5
lines changed 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -56,12 +56,12 @@ internal void AppendToPatch(string patch)
56
56
public virtual int LinesDeleted { get ; internal set ; }
57
57
58
58
/// <summary>
59
- /// Lis of all lines added .
59
+ /// The list of added lines.
60
60
/// </summary>
61
61
public virtual List < Line > AddedLines { get ; internal set ; }
62
62
63
63
/// <summary>
64
- /// List of all lines deleted .
64
+ /// The list of deleted lines.
65
65
/// </summary>
66
66
public virtual List < Line > DeletedLines { get ; internal set ; }
67
67
Original file line number Diff line number Diff line change 5
5
namespace LibGit2Sharp
6
6
{
7
7
/// <summary>
8
- /// Represents a Line with line number and content.
8
+ /// Represents a line with line number and content.
9
9
/// </summary>
10
10
public struct Line
11
11
{
@@ -15,9 +15,9 @@ public struct Line
15
15
public int LineNumber { get ; }
16
16
17
17
/// <summary>
18
- /// This content of the line in the original blob
18
+ /// The content of the line in the original blob.
19
19
/// </summary>
20
- public String Content { get ; }
20
+ public string Content { get ; }
21
21
22
22
internal Line ( int lineNumber , string content )
23
23
{
You can’t perform that action at this time.
0 commit comments