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/RepositoryInformation.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/RepositoryInformation.cs')
-rw-r--r--LibGit2Sharp/RepositoryInformation.cs26
1 files changed, 13 insertions, 13 deletions
diff --git a/LibGit2Sharp/RepositoryInformation.cs b/LibGit2Sharp/RepositoryInformation.cs
index 2944e519..03c45f87 100644
--- a/LibGit2Sharp/RepositoryInformation.cs
+++ b/LibGit2Sharp/RepositoryInformation.cs
@@ -4,14 +4,14 @@ using LibGit2Sharp.Core;
namespace LibGit2Sharp
{
/// <summary>
- /// Provides high level information about a repository.
+ /// Provides high level information about a repository.
/// </summary>
public class RepositoryInformation
{
private readonly Repository repo;
/// <summary>
- /// Needed for mocking purposes.
+ /// Needed for mocking purposes.
/// </summary>
protected RepositoryInformation()
{ }
@@ -30,30 +30,30 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the normalized path to the git repository.
+ /// Gets the normalized path to the git repository.
/// </summary>
public virtual string Path { get; private set; }
/// <summary>
- /// Gets the normalized path to the working directory.
- /// <para>
- /// Is the repository is bare, null is returned.
- /// </para>
+ /// Gets the normalized path to the working directory.
+ /// <para>
+ /// Is the repository is bare, null is returned.
+ /// </para>
/// </summary>
public virtual string WorkingDirectory { get; private set; }
/// <summary>
- /// Indicates whether the repository has a working directory.
+ /// Indicates whether the repository has a working directory.
/// </summary>
public virtual bool IsBare { get; private set; }
/// <summary>
- /// Indicates whether the repository is shallow (the result of `git clone --depth ...`)
+ /// Indicates whether the repository is shallow (the result of `git clone --depth ...`)
/// </summary>
public virtual bool IsShallow { get; private set; }
/// <summary>
- /// Indicates whether the Head points to an arbitrary commit instead of the tip of a local branch.
+ /// Indicates whether the Head points to an arbitrary commit instead of the tip of a local branch.
/// </summary>
public virtual bool IsHeadDetached
{
@@ -61,7 +61,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Indicates whether the Head points to a reference which doesn't exist.
+ /// Indicates whether the Head points to a reference which doesn't exist.
/// </summary>
public virtual bool IsHeadOrphaned
{
@@ -69,7 +69,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// The pending interactive operation.
+ /// The pending interactive operation.
/// </summary>
public virtual CurrentOperation CurrentOperation
{
@@ -77,7 +77,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// The message for a pending interactive operation.
+ /// The message for a pending interactive operation.
/// </summary>
public virtual string Message
{