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/RepositoryNotFoundException.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/RepositoryNotFoundException.cs')
-rw-r--r--LibGit2Sharp/RepositoryNotFoundException.cs22
1 files changed, 11 insertions, 11 deletions
diff --git a/LibGit2Sharp/RepositoryNotFoundException.cs b/LibGit2Sharp/RepositoryNotFoundException.cs
index edc6fcdf..114da2ea 100644
--- a/LibGit2Sharp/RepositoryNotFoundException.cs
+++ b/LibGit2Sharp/RepositoryNotFoundException.cs
@@ -4,43 +4,43 @@ using System.Runtime.Serialization;
namespace LibGit2Sharp
{
/// <summary>
- /// The exception that is thrown when a <see cref="Repository"/> is being built with
- /// a path that doesn't point at a valid Git repository or workdir.
+ /// The exception that is thrown when a <see cref="Repository"/> is being built with
+ /// a path that doesn't point at a valid Git repository or workdir.
/// </summary>
[Serializable]
public class RepositoryNotFoundException : LibGit2SharpException
{
/// <summary>
- /// Initializes a new instance of the <see cref = "RepositoryNotFoundException" /> class.
+ /// Initializes a new instance of the <see cref="RepositoryNotFoundException"/> class.
/// </summary>
public RepositoryNotFoundException()
{
}
/// <summary>
- /// Initializes a new instance of the <see cref = "RepositoryNotFoundException" /> class with a specified error message.
+ /// Initializes a new instance of the <see cref="RepositoryNotFoundException"/> class with a specified error message.
/// </summary>
- /// <param name = "message">A message that describes the error. </param>
+ /// <param name="message">A message that describes the error.</param>
public RepositoryNotFoundException(string message)
: base(message)
{
}
/// <summary>
- /// Initializes a new instance of the <see cref = "RepositoryNotFoundException" /> class with a specified error message and a reference to the inner exception that is the cause of this exception.
+ /// Initializes a new instance of the <see cref="RepositoryNotFoundException"/> class with a specified error message and a reference to the inner exception that is the cause of this exception.
/// </summary>
- /// <param name = "message">The error message that explains the reason for the exception. </param>
- /// <param name = "innerException">The exception that is the cause of the current exception. If the <paramref name = "innerException" /> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
+ /// <param name="message">The error message that explains the reason for the exception.</param>
+ /// <param name="innerException">The exception that is the cause of the current exception. If the <paramref name="innerException"/> parameter is not a null reference, the current exception is raised in a catch block that handles the inner exception.</param>
public RepositoryNotFoundException(string message, Exception innerException)
: base(message, innerException)
{
}
/// <summary>
- /// Initializes a new instance of the <see cref = "RepositoryNotFoundException" /> class with a serialized data.
+ /// Initializes a new instance of the <see cref="RepositoryNotFoundException"/> class with a serialized data.
/// </summary>
- /// <param name = "info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
- /// <param name = "context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
+ /// <param name="info">The <see cref="SerializationInfo "/> that holds the serialized object data about the exception being thrown.</param>
+ /// <param name="context">The <see cref="StreamingContext"/> that contains contextual information about the source or destination.</param>
protected RepositoryNotFoundException(SerializationInfo info, StreamingContext context)
: base(info, context)
{