Skip to content

Commit 34a65c3

Browse files
committed
Merge branch '1789_addedLines_and_deletedLines_in_ContentChanges' of https://github.com/Stijn-Rutten/libgit2sharp into 1789_addedLines_and_deletedLines_in_ContentChanges
2 parents c5bd90a + a9d5c36 commit 34a65c3

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

LibGit2Sharp/ContentChanges.cs

+2-2
Original file line numberDiff line numberDiff 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

LibGit2Sharp/Line.cs

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,19 +5,19 @@
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
{
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
{

0 commit comments

Comments
 (0)