File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 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)
5656 public virtual int LinesDeleted { get ; internal set ; }
5757
5858 /// <summary>
59- /// Lis of all lines added .
59+ /// The list of added lines.
6060 /// </summary>
6161 public virtual List < Line > AddedLines { get ; internal set ; }
6262
6363 /// <summary>
64- /// List of all lines deleted .
64+ /// The list of deleted lines.
6565 /// </summary>
6666 public virtual List < Line > DeletedLines { get ; internal set ; }
6767
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 {
@@ -15,9 +15,9 @@ public struct Line
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