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/DiffModifiers.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/DiffModifiers.cs')
-rw-r--r--LibGit2Sharp/DiffModifiers.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/LibGit2Sharp/DiffModifiers.cs b/LibGit2Sharp/DiffModifiers.cs
index c7a5385c..af9ccb75 100644
--- a/LibGit2Sharp/DiffModifiers.cs
+++ b/LibGit2Sharp/DiffModifiers.cs
@@ -3,37 +3,37 @@ using System;
namespace LibGit2Sharp
{
/// <summary>
- /// Additional behaviors the diffing should take into account
- /// when performing the comparison.
+ /// Additional behaviors the diffing should take into account
+ /// when performing the comparison.
/// </summary>
[Flags]
internal enum DiffModifiers
{
/// <summary>
- /// No special behavior.
+ /// No special behavior.
/// </summary>
None = 0,
/// <summary>
- /// Include untracked files among the files to be processed, when
- /// diffing against the working directory.
+ /// Include untracked files among the files to be processed, when
+ /// diffing against the working directory.
/// </summary>
IncludeUntracked = (1 << 1),
/// <summary>
- /// Include unmodified files among the files to be processed, when
- /// diffing against the working directory.
+ /// Include unmodified files among the files to be processed, when
+ /// diffing against the working directory.
/// </summary>
IncludeUnmodified = (1 << 2),
/// <summary>
- /// Treats the passed pathspecs as explicit paths (no pathspec match).
+ /// Treats the passed pathspecs as explicit paths (no pathspec match).
/// </summary>
DisablePathspecMatch = (1 << 3),
/// <summary>
- /// Include ignored files among the files to be processed, when
- /// diffing against the working directory.
+ /// Include ignored files among the files to be processed, when
+ /// diffing against the working directory.
/// </summary>
IncludeIgnored = (1 << 4),
}