diff --git a/lib/modules/SSL.pmod/Session.pike b/lib/modules/SSL.pmod/Session.pike
index 69e3703df592fdb67d41539c81b424572661fc24..f83a163dc25473521d0597c19a01541a6e343e68 100644
--- a/lib/modules/SSL.pmod/Session.pike
+++ b/lib/modules/SSL.pmod/Session.pike
@@ -41,7 +41,8 @@ Cipher.CipherSpec cipher_spec;
 //! deriving the actual keys.
 string(8bit) master_secret;
 
-//! information about the certificate in use by the peer, such as issuing authority, and verification status.
+//! Information about the certificate in use by the peer, such as
+//! issuing authority, and verification status.
 mapping cert_data;
 
 //! Negotiated protocol version.
@@ -267,7 +268,8 @@ int select_cipher_suite(array(CertificatePair) certs,
 
   SSL3_DEBUG_MSG("Candidate certificates: %O\n", certs);
 
-  // Find the set of key exchange and hash algorithms supported by the client.
+  // Find the set of key exchange and hash algorithms supported by the
+  // client.
   int ke_mask = 0;
   int h_max = 0;
   foreach(cipher_suites, int suite) {