File tree 2 files changed +6
-6
lines changed
2 files changed +6
-6
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,12 @@ internal void AppendToPatch(string patch)
53
53
public virtual int LinesDeleted { get ; internal set ; }
54
54
55
55
/// <summary>
56
- /// Lis of all lines added .
56
+ /// The list of added lines.
57
57
/// </summary>
58
58
public virtual List < Line > AddedLines { get ; } = new List < Line > ( ) ;
59
59
60
60
/// <summary>
61
- /// List of all lines deleted .
61
+ /// The list of deleted lines.
62
62
/// </summary>
63
63
public virtual List < Line > DeletedLines { get ; } = new List < Line > ( ) ;
64
64
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
{
12
12
/// <summary>
13
- /// Points to the number of the original line in the blob
13
+ /// The line number of the original line in the blob.
14
14
/// </summary>
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