diff --git a/websocket-sharp/Server/WebSocketSessionManager.cs b/websocket-sharp/Server/WebSocketSessionManager.cs
index ac8445fd..18c816dc 100644
--- a/websocket-sharp/Server/WebSocketSessionManager.cs
+++ b/websocket-sharp/Server/WebSocketSessionManager.cs
@@ -739,18 +739,18 @@ namespace WebSocketSharp.Server
///
/// This method doesn't wait for the send to be complete.
///
- ///
- /// A that represents the ID of the session to find.
- ///
///
/// A that represents the text data to send.
///
+ ///
+ /// A that represents the ID of the session to find.
+ ///
///
/// An Action<bool> delegate that references the method(s) called when
/// the send is complete. A passed to this delegate is true
/// if the send is complete successfully.
///
- public void SendToAsync (string id, string data, Action completed)
+ public void SendToAsync (string data, string id, Action completed)
{
IWebSocketSession session;
if (TryGetSession (id, out session))