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/ICommitLog.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/ICommitLog.cs')
-rw-r--r--LibGit2Sharp/ICommitLog.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/LibGit2Sharp/ICommitLog.cs b/LibGit2Sharp/ICommitLog.cs
index 9f8c37b1..f773532f 100644
--- a/LibGit2Sharp/ICommitLog.cs
+++ b/LibGit2Sharp/ICommitLog.cs
@@ -3,12 +3,12 @@
namespace LibGit2Sharp
{
/// <summary>
- /// A log of commits in a <see cref = "Repository" />.
+ /// A log of commits in a <see cref="Repository"/>.
/// </summary>
public interface ICommitLog : IEnumerable<Commit>
{
/// <summary>
- /// Gets the current sorting strategy applied when enumerating the log.
+ /// Gets the current sorting strategy applied when enumerating the log.
/// </summary>
CommitSortStrategies SortedBy { get; }
}