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/CommitFilter.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/CommitFilter.cs')
-rw-r--r--LibGit2Sharp/CommitFilter.cs38
1 files changed, 19 insertions, 19 deletions
diff --git a/LibGit2Sharp/CommitFilter.cs b/LibGit2Sharp/CommitFilter.cs
index f38d0bf7..17d91b72 100644
--- a/LibGit2Sharp/CommitFilter.cs
+++ b/LibGit2Sharp/CommitFilter.cs
@@ -5,12 +5,12 @@ using System.Linq;
namespace LibGit2Sharp
{
/// <summary>
- /// Criterias used to filter out and order the commits of the repository when querying its history.
+ /// Criterias used to filter out and order the commits of the repository when querying its history.
/// </summary>
public class CommitFilter
{
/// <summary>
- /// Initializes a new instance of <see cref = "LibGit2Sharp.Filter" />.
+ /// Initializes a new instance of <see cref="CommitFilter"/>.
/// </summary>
public CommitFilter()
{
@@ -19,21 +19,21 @@ namespace LibGit2Sharp
}
/// <summary>
- /// The ordering stragtegy to use.
- /// <para>
- /// By default, the commits are shown in reverse chronological order.
- /// </para>
+ /// The ordering stragtegy to use.
+ /// <para>
+ /// By default, the commits are shown in reverse chronological order.
+ /// </para>
/// </summary>
public CommitSortStrategies SortBy { get; set; }
/// <summary>
- /// A pointer to a commit object or a list of pointers to consider as starting points.
- /// <para>
- /// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
- /// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />,
- /// a <see cref = "TagAnnotation" />, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
- /// By default, the <see cref = "Repository.Head" /> will be used as boundary.
- /// </para>
+ /// A pointer to a commit object or a list of pointers to consider as starting points.
+ /// <para>
+ /// Can be either a <see cref="string"/> containing the sha or reference canonical name to use,
+ /// a <see cref="Branch"/>, a <see cref="Reference"/>, a <see cref="Commit"/>, a <see cref="Tag"/>,
+ /// a <see cref="TagAnnotation"/>, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
+ /// By default, the <see cref="Repository.Head"/> will be used as boundary.
+ /// </para>
/// </summary>
public object Since { get; set; }
@@ -43,12 +43,12 @@ namespace LibGit2Sharp
}
/// <summary>
- /// A pointer to a commit object or a list of pointers which will be excluded (along with ancestors) from the enumeration.
- /// <para>
- /// Can be either a <see cref = "string" /> containing the sha or reference canonical name to use,
- /// a <see cref = "Branch" />, a <see cref = "Reference" />, a <see cref = "Commit" />, a <see cref = "Tag" />,
- /// a <see cref = "TagAnnotation" />, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
- /// </para>
+ /// A pointer to a commit object or a list of pointers which will be excluded (along with ancestors) from the enumeration.
+ /// <para>
+ /// Can be either a <see cref="string"/> containing the sha or reference canonical name to use,
+ /// a <see cref="Branch"/>, a <see cref="Reference"/>, a <see cref="Commit"/>, a <see cref="Tag"/>,
+ /// a <see cref="TagAnnotation"/>, an <see cref="ObjectId"/> or even a mixed collection of all of the above.
+ /// </para>
/// </summary>
public object Until { get; set; }