]> git.ipfire.org Git - thirdparty/squid.git/commitdiff
fix documentation
authorAmos Jeffries <squid3@treenet.co.nz>
Mon, 7 Sep 2015 15:52:27 +0000 (08:52 -0700)
committerAmos Jeffries <squid3@treenet.co.nz>
Mon, 7 Sep 2015 15:52:27 +0000 (08:52 -0700)
src/auth/UserNameCache.h

index 8cfa431c1d0b1c8821c6c7cac733479eb972d04b..b498ec3a6839e3925365aea931e8f2060f1e1aa0 100644 (file)
 
 namespace Auth {
 
-/** Cache of Auth::User::Pointer, keyed by Auth::User::userKey
- *
- * \returns a pointer to cached credentials, or nullptr if none found
- */
+/// Cache of Auth::User credentials, keyed by Auth::User::userKey
 class UserNameCache : public RegisteredRunner
 {
 private:
@@ -39,6 +36,7 @@ public:
     UserNameCache& operator=(const UserNameCache&) = delete;
 
     /// obtain pointer to user if present, or Pointer(nullptr) if not
+    /// \returns a pointer to cached credentials, or nil if none found
     Auth::User::Pointer lookup(const SBuf &userKey) const;
 
     /// add an user to the cache