[Modify] Edit it

This commit is contained in:
sta 2019-01-31 22:24:48 +09:00
parent ef552ed98d
commit ceff87c0a0

View File

@ -764,15 +764,21 @@ namespace WebSocketSharp.Net
#region Public Methods #region Public Methods
/// <summary> /// <summary>
/// Determines whether the specified <see cref="Object"/> is equal to the current /// Determines whether the current cookie instance is equal to
/// <see cref="Cookie"/>. /// the specified <see cref="object"/> instance.
/// </summary> /// </summary>
/// <param name="comparand"> /// <param name="comparand">
/// An <see cref="Object"/> to compare with the current <see cref="Cookie"/>. /// <para>
/// An <see cref="object"/> instance to compare with
/// the current cookie instance.
/// </para>
/// <para>
/// An reference to a <see cref="Cookie"/> instance.
/// </para>
/// </param> /// </param>
/// <returns> /// <returns>
/// <c>true</c> if <paramref name="comparand"/> is equal to the current <see cref="Cookie"/>; /// <c>true</c> if the current cookie instance is equal to
/// otherwise, <c>false</c>. /// <paramref name="comparand"/>; otherwise, <c>false</c>.
/// </returns> /// </returns>
public override bool Equals (object comparand) public override bool Equals (object comparand)
{ {