]> git.netwichtig.de Git - user/henk/code/inspircd.git/blobdiff - include/users.h
Fix SendNoticeInternal not having a NULL command variant.
[user/henk/code/inspircd.git] / include / users.h
index 136874bab29fa48edd0b0a0f4d50b9c9b5cbfe09..8045d57050c5d56ff670e27f7aae466ebec11146 100644 (file)
@@ -243,19 +243,19 @@ struct CoreExport ConnectClass : public refcountbase
 class CoreExport User : public Extensible
 {
  private:
-       /** Cached nick!ident@dhost value using the displayed hostname
+       /** Cached nick!ident\@dhost value using the displayed hostname
         */
        std::string cached_fullhost;
 
-       /** Cached ident@ip value using the real IP address
+       /** Cached ident\@ip value using the real IP address
         */
        std::string cached_hostip;
 
-       /** Cached ident@realhost value using the real hostname
+       /** Cached ident\@realhost value using the real hostname
         */
        std::string cached_makehost;
 
-       /** Cached nick!ident@realhost value using the real hostname
+       /** Cached nick!ident\@realhost value using the real hostname
         */
        std::string cached_fullrealhost;
 
@@ -850,7 +850,6 @@ class CoreExport LocalUser : public User, public insp::intrusive_list_node<Local
 
        /** Set the connect class to which this user belongs to.
         * @param explicit_name Set this string to tie the user to a specific class name. Otherwise, the class is fitted by checking \<connect> tags from the configuration file.
-        * @return A reference to this user's current connect class.
         */
        void SetClass(const std::string &explicit_name = "");