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