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/NameConflictException.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/NameConflictException.cs')
-rw-r--r--LibGit2Sharp/NameConflictException.cs20
1 files changed, 10 insertions, 10 deletions
diff --git a/LibGit2Sharp/NameConflictException.cs b/LibGit2Sharp/NameConflictException.cs
index 989256ca..75ec7807 100644
--- a/LibGit2Sharp/NameConflictException.cs
+++ b/LibGit2Sharp/NameConflictException.cs
@@ -5,42 +5,42 @@ using LibGit2Sharp.Core;
namespace LibGit2Sharp
{
/// <summary>
- /// The exception that is thrown when a reference, a remote, a submodule... with the same name already exists in the repository
+ /// The exception that is thrown when a reference, a remote, a submodule... with the same name already exists in the repository
/// </summary>
[Serializable]
public class NameConflictException : LibGit2SharpException
{
/// <summary>
- /// Initializes a new instance of the <see cref = "NameConflictException" /> class.
+ /// Initializes a new instance of the <see cref="NameConflictException"/> class.
/// </summary>
public NameConflictException()
{
}
/// <summary>
- /// Initializes a new instance of the <see cref = "NameConflictException" /> class with a specified error message.
+ /// Initializes a new instance of the <see cref="NameConflictException"/> 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 NameConflictException(string message)
: base(message)
{
}
/// <summary>
- /// Initializes a new instance of the <see cref = "NameConflictException" /> 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="NameConflictException"/> 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 NameConflictException(string message, Exception innerException)
: base(message, innerException)
{
}
/// <summary>
- /// Initializes a new instance of the <see cref = "NameConflictException" /> class with a serialized data.
+ /// Initializes a new instance of the <see cref="NameConflictException"/> 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 NameConflictException(SerializationInfo info, StreamingContext context)
: base(info, context)
{