Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/libgit2sharp.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoryorah <yoram.harmelin@gmail.com>2013-07-01 13:58:03 +0400
committeryorah <yoram.harmelin@gmail.com>2013-07-01 17:59:33 +0400
commit6fbd65b68d4fcc3c7baea915da6d99b663131d34 (patch)
tree189f2eb9493dd2e41cafea6890f57e0966aa2d1f /LibGit2Sharp/BranchTrackingDetails.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/BranchTrackingDetails.cs')
-rw-r--r--LibGit2Sharp/BranchTrackingDetails.cs30
1 files changed, 15 insertions, 15 deletions
diff --git a/LibGit2Sharp/BranchTrackingDetails.cs b/LibGit2Sharp/BranchTrackingDetails.cs
index c2e51cdb..0f2fac1d 100644
--- a/LibGit2Sharp/BranchTrackingDetails.cs
+++ b/LibGit2Sharp/BranchTrackingDetails.cs
@@ -4,7 +4,7 @@ using LibGit2Sharp.Core.Compat;
namespace LibGit2Sharp
{
/// <summary>
- /// Tracking information for a <see cref="Branch" />
+ /// Tracking information for a <see cref="Branch"/>
/// </summary>
public class BranchTrackingDetails
{
@@ -14,7 +14,7 @@ namespace LibGit2Sharp
private readonly Lazy<Commit> commonAncestor;
/// <summary>
- /// Needed for mocking purposes.
+ /// Needed for mocking purposes.
/// </summary>
protected BranchTrackingDetails()
{ }
@@ -29,10 +29,10 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the number of commits that exist in this local branch but don't exist in the tracked one.
- /// <para>
- /// This property will return null if there is no tracked branch linked to this local branch.
- /// </para>
+ /// Gets the number of commits that exist in this local branch but don't exist in the tracked one.
+ /// <para>
+ /// This property will return null if there is no tracked branch linked to this local branch.
+ /// </para>
/// </summary>
public virtual int? AheadBy
{
@@ -40,10 +40,10 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the number of commits that exist in the tracked branch but don't exist in this local one.
- /// <para>
- /// This property will return null if there is no tracked branch linked to this local branch.
- /// </para>
+ /// Gets the number of commits that exist in the tracked branch but don't exist in this local one.
+ /// <para>
+ /// This property will return null if there is no tracked branch linked to this local branch.
+ /// </para>
/// </summary>
public virtual int? BehindBy
{
@@ -51,11 +51,11 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the common ancestor of the local branch and its tracked remote branch.
- /// <para>
- /// This property will return null if there is no tracked branch linked to this local branch,
- /// or if either branch is an orphan.
- /// </para>
+ /// Gets the common ancestor of the local branch and its tracked remote branch.
+ /// <para>
+ /// This property will return null if there is no tracked branch linked to this local branch,
+ /// or if either branch is an orphan.
+ /// </para>
/// </summary>
public virtual Commit CommonAncestor
{