diff --git a/websocket-sharp/Ext.cs b/websocket-sharp/Ext.cs
index 86e9e76e..79ec80f9 100644
--- a/websocket-sharp/Ext.cs
+++ b/websocket-sharp/Ext.cs
@@ -1885,15 +1885,18 @@ namespace WebSocketSharp
}
///
- /// Executes the specified Action<long> delegate times.
+ /// Executes the specified delegate times.
///
///
- /// A is the number of times to execute.
+ /// A that specifies the number of times to execute.
///
///
- /// An Action<long> delegate that references the method(s) to execute.
- /// A parameter to pass to the method(s) is the zero-based count of
- /// iteration.
+ ///
+ /// An Action<long> delegate to execute.
+ ///
+ ///
+ /// The parameter is the zero-based count of iteration.
+ ///
///
public static void Times (this long n, Action action)
{