]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
More comments and docs polishing.
authorAlex Rousskov <rousskov@measurement-factory.com>
Wed, 20 Jun 2012 21:26:13 +0000 (15:26 -0600)
committerAlex Rousskov <rousskov@measurement-factory.com>
Wed, 20 Jun 2012 21:26:13 +0000 (15:26 -0600)
include/CbDataList.h
src/acl/FilledChecklist.h
src/cf.data.pre

index 2ffa0b9822fb93ed2d4551a45c7686161883db57..4c5c06e3eebac15ab3dbdaf4a9e7ca2b6d8682f3 100644 (file)
@@ -44,7 +44,7 @@ public:
     CbDataList (C const &);
     ~CbDataList();
 
-    /// If element is already in the list return false.
+    /// If element is already in the list, returns false.
     /// Otherwise, adds the element to the end of the list and returns true.
     /// Exists to avoid double iteration of find() and push() combo.
     bool push_back_unique(C const &element);
@@ -141,7 +141,7 @@ CbDataList<C>::push_back_unique(C const &toAdd)
             return false;
     }
 
-    last->next = new CbDataList<C> (toAdd);
+    last->next = new CbDataList<C>(toAdd);
     return true;
 }
 
index 5c4b7668814ce839e07628dbff2ca017c5e1452f..487ee7da5ede914555524dd13f57579e47598ad6 100644 (file)
@@ -66,7 +66,7 @@ public:
 #endif
 
 #if USE_SSL
-    /// SSL [certificate validation] errors in undefined order
+    /// SSL [certificate validation] errors, in undefined order
     Ssl::Errors *sslErrors;
 #endif
 
index 116ea2ee8d16972c385a18e72b05cc49900ed6d8..1eda02dbe4c7b5f922ed0330625db7af2952f32e 100644 (file)
@@ -1416,8 +1416,7 @@ DOC_START
           dynamic_cert_mem_cache_size=SIZE
                        Approximate total RAM size spent on cached generated
                        certificates. If set to zero, caching is disabled. The
-                       default value is 4MB. An average XXX-bit certificate
-                       consumes about XXX bytes of RAM.
+                       default value is 4MB.
 
        TLS / SSL Options:
 
@@ -1664,8 +1663,7 @@ DOC_START
           dynamic_cert_mem_cache_size=SIZE
                        Approximate total RAM size spent on cached generated
                        certificates. If set to zero, caching is disabled. The
-                       default value is 4MB. An average XXX-bit certificate
-                       consumes about XXX bytes of RAM.
+                       default value is 4MB.
 
        See http_port for a list of available options.
 DOC_END