File tree Expand file tree Collapse file tree 2 files changed +6
-6
lines changed Expand file tree Collapse file tree 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)
5353 public virtual int LinesDeleted { get ; internal set ; }
5454
5555 /// <summary>
56- /// Lis of all lines added .
56+ /// The list of added lines.
5757 /// </summary>
5858 public virtual List < Line > AddedLines { get ; } = new List < Line > ( ) ;
5959
6060 /// <summary>
61- /// List of all lines deleted .
61+ /// The list of deleted lines.
6262 /// </summary>
6363 public virtual List < Line > DeletedLines { get ; } = new List < Line > ( ) ;
6464
Original file line number Diff line number Diff line change 55namespace LibGit2Sharp
66{
77 /// <summary>
8- /// Represents a Line with line number and content.
8+ /// Represents a line with line number and content.
99 /// </summary>
1010 public struct Line
1111 {
1212 /// <summary>
13- /// Points to the number of the original line in the blob
13+ /// The line number of the original line in the blob.
1414 /// </summary>
1515 public int LineNumber { get ; }
1616
1717 /// <summary>
18- /// This content of the line in the original blob
18+ /// The content of the line in the original blob.
1919 /// </summary>
20- public String Content { get ; }
20+ public string Content { get ; }
2121
2222 internal Line ( int lineNumber , string content )
2323 {
You can’t perform that action at this time.
0 commit comments