Skip to content

Commit a9d5c36

Browse files
Apply suggestions from code review
Co-authored-by: Brandon Ording <bording@gmail.com>
1 parent 8196539 commit a9d5c36

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

LibGit2Sharp/ContentChanges.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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

LibGit2Sharp/Line.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
namespace 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
{

0 commit comments

Comments
 (0)