diff --git a/websocket-sharp/Net/ClientSslConfiguration.cs b/websocket-sharp/Net/ClientSslConfiguration.cs
index 342bfb16..627a18a6 100644
--- a/websocket-sharp/Net/ClientSslConfiguration.cs
+++ b/websocket-sharp/Net/ClientSslConfiguration.cs
@@ -150,15 +150,21 @@ namespace WebSocketSharp.Net
}
///
- /// Gets or sets the callback used to validate the certificate supplied by the server.
+ /// Gets or sets the callback used to validate the certificate
+ /// supplied by the server.
///
///
- /// If this callback returns true, the server certificate will be valid.
+ /// The certificate is valid if the callback returns true.
///
///
- /// A delegate that references the method
- /// used to validate the server certificate. The default value is a function that only returns
- /// true.
+ ///
+ /// A delegate that
+ /// invokes the method called for validating the certificate.
+ ///
+ ///
+ /// The default value is a delegate that invokes a method that
+ /// only returns true.
+ ///
///
public RemoteCertificateValidationCallback ServerCertificateValidationCallback {
get {