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/ExplicitPathsOptions.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/ExplicitPathsOptions.cs')
-rw-r--r--LibGit2Sharp/ExplicitPathsOptions.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/LibGit2Sharp/ExplicitPathsOptions.cs b/LibGit2Sharp/ExplicitPathsOptions.cs
index 02e81c72..f5c2e2e2 100644
--- a/LibGit2Sharp/ExplicitPathsOptions.cs
+++ b/LibGit2Sharp/ExplicitPathsOptions.cs
@@ -3,17 +3,17 @@ using LibGit2Sharp.Handlers;
namespace LibGit2Sharp
{
/// <summary>
- /// Allows callers to specify how unmatched paths should be handled
- /// by operations such as Reset(), Compare(), Unstage(), ...
- /// <para>
- /// By passing these options, the passed paths will be treated as
- /// explicit paths, and NOT pathspecs containing globs.
- /// </para>
+ /// Allows callers to specify how unmatched paths should be handled
+ /// by operations such as Reset(), Compare(), Unstage(), ...
+ /// <para>
+ /// By passing these options, the passed paths will be treated as
+ /// explicit paths, and NOT pathspecs containing globs.
+ /// </para>
/// </summary>
public class ExplicitPathsOptions
{
/// <summary>
- /// Associated paths will be treated as explicit paths.
+ /// Associated paths will be treated as explicit paths.
/// </summary>
public ExplicitPathsOptions()
{
@@ -21,16 +21,16 @@ namespace LibGit2Sharp
}
/// <summary>
- /// When set to true, the called operation will throw a <see cref="UnmatchedPathException"/> when an unmatched
- /// path is encountered.
- /// <para>
- /// Set to true by default.
- /// </para>
+ /// When set to true, the called operation will throw a <see cref="UnmatchedPathException"/> when an unmatched
+ /// path is encountered.
+ /// <para>
+ /// Set to true by default.
+ /// </para>
/// </summary>
public bool ShouldFailOnUnmatchedPath { get; set; }
/// <summary>
- /// Sets a callback that will be called once for each unmatched path.
+ /// Sets a callback that will be called once for each unmatched path.
/// </summary>
public UnmatchedPathHandler OnUnmatchedPath { get; set; }
}