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/DiffTargets.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/DiffTargets.cs')
-rw-r--r--LibGit2Sharp/DiffTargets.cs6
1 files changed, 3 insertions, 3 deletions
diff --git a/LibGit2Sharp/DiffTargets.cs b/LibGit2Sharp/DiffTargets.cs
index 8488a9a0..58e3f2f4 100644
--- a/LibGit2Sharp/DiffTargets.cs
+++ b/LibGit2Sharp/DiffTargets.cs
@@ -3,18 +3,18 @@ using System;
namespace LibGit2Sharp
{
/// <summary>
- /// The targets of a Tree based diff comparison.
+ /// The targets of a Tree based diff comparison.
/// </summary>
[Flags]
public enum DiffTargets
{
/// <summary>
- /// The repository index.
+ /// The repository index.
/// </summary>
Index = 1,
/// <summary>
- /// The working directory.
+ /// The working directory.
/// </summary>
WorkingDirectory = 2,
}