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/Signature.cs
parent219b0c5764ac247e3bbcf04c2966208c813c36c9 (diff)
Standardize comments style
Diffstat (limited to 'LibGit2Sharp/Signature.cs')
-rw-r--r--LibGit2Sharp/Signature.cs42
1 files changed, 21 insertions, 21 deletions
diff --git a/LibGit2Sharp/Signature.cs b/LibGit2Sharp/Signature.cs
index c7d9bf76..ba2d2dd9 100644
--- a/LibGit2Sharp/Signature.cs
+++ b/LibGit2Sharp/Signature.cs
@@ -6,7 +6,7 @@ using LibGit2Sharp.Core.Handles;
namespace LibGit2Sharp
{
/// <summary>
- /// A signature
+ /// A signature
/// </summary>
public class Signature : IEquatable<Signature>
{
@@ -28,11 +28,11 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Initializes a new instance of the <see cref = "Signature" /> class.
+ /// Initializes a new instance of the <see cref="Signature"/> class.
/// </summary>
- /// <param name = "name">The name.</param>
- /// <param name = "email">The email.</param>
- /// <param name = "when">The when.</param>
+ /// <param name="name">The name.</param>
+ /// <param name="email">The email.</param>
+ /// <param name="when">The when.</param>
public Signature(string name, string email, DateTimeOffset when)
{
this.name = name;
@@ -46,7 +46,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the name.
+ /// Gets the name.
/// </summary>
public string Name
{
@@ -54,7 +54,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the email.
+ /// Gets the email.
/// </summary>
public string Email
{
@@ -62,7 +62,7 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Gets the date when this signature happened.
+ /// Gets the date when this signature happened.
/// </summary>
public DateTimeOffset When
{
@@ -70,27 +70,27 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Determines whether the specified <see cref = "Object" /> is equal to the current <see cref = "Signature" />.
+ /// Determines whether the specified <see cref="Object"/> is equal to the current <see cref="Signature"/>.
/// </summary>
- /// <param name = "obj">The <see cref = "Object" /> to compare with the current <see cref = "Signature" />.</param>
- /// <returns>True if the specified <see cref = "Object" /> is equal to the current <see cref = "Signature" />; otherwise, false.</returns>
+ /// <param name="obj">The <see cref="Object"/> to compare with the current <see cref="Signature"/>.</param>
+ /// <returns>True if the specified <see cref="Object"/> is equal to the current <see cref="Signature"/>; otherwise, false.</returns>
public override bool Equals(object obj)
{
return Equals(obj as Signature);
}
/// <summary>
- /// Determines whether the specified <see cref = "Signature" /> is equal to the current <see cref = "Signature" />.
+ /// Determines whether the specified <see cref="Signature"/> is equal to the current <see cref="Signature"/>.
/// </summary>
- /// <param name = "other">The <see cref = "Signature" /> to compare with the current <see cref = "Signature" />.</param>
- /// <returns>True if the specified <see cref = "Signature" /> is equal to the current <see cref = "Signature" />; otherwise, false.</returns>
+ /// <param name="other">The <see cref="Signature"/> to compare with the current <see cref="Signature"/>.</param>
+ /// <returns>True if the specified <see cref="Signature"/> is equal to the current <see cref="Signature"/>; otherwise, false.</returns>
public bool Equals(Signature other)
{
return equalityHelper.Equals(this, other);
}
/// <summary>
- /// Returns the hash code for this instance.
+ /// Returns the hash code for this instance.
/// </summary>
/// <returns>A 32-bit signed integer hash code.</returns>
public override int GetHashCode()
@@ -99,10 +99,10 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Tests if two <see cref = "Signature" /> are equal.
+ /// Tests if two <see cref="Signature"/> are equal.
/// </summary>
- /// <param name = "left">First <see cref = "Signature" /> to compare.</param>
- /// <param name = "right">Second <see cref = "Signature" /> to compare.</param>
+ /// <param name="left">First <see cref="Signature"/> to compare.</param>
+ /// <param name="right">Second <see cref="Signature"/> to compare.</param>
/// <returns>True if the two objects are equal; false otherwise.</returns>
public static bool operator ==(Signature left, Signature right)
{
@@ -110,10 +110,10 @@ namespace LibGit2Sharp
}
/// <summary>
- /// Tests if two <see cref = "Signature" /> are different.
+ /// Tests if two <see cref="Signature"/> are different.
/// </summary>
- /// <param name = "left">First <see cref = "Signature" /> to compare.</param>
- /// <param name = "right">Second <see cref = "Signature" /> to compare.</param>
+ /// <param name="left">First <see cref="Signature"/> to compare.</param>
+ /// <param name="right">Second <see cref="Signature"/> to compare.</param>
/// <returns>True if the two objects are different; false otherwise.</returns>
public static bool operator !=(Signature left, Signature right)
{