diff options
author | Sadie Powell <sadie@witchery.services> | 2021-08-01 18:53:24 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2021-08-01 18:53:24 +0100 |
commit | 561b205c4a3a125c12a7926ef18fa1eb822c387c (patch) | |
tree | c763ddefe765e23ec0ff189e24d55f634b52b954 /include/users.h | |
parent | 376053e0acae2a37a8f5c77c8de25ebf8a8395a9 (diff) | |
parent | 91321bdf682eb5b512373bb56c722f943cbc8183 (diff) |
Merge branch '2.0' into 2.1.
Diffstat (limited to 'include/users.h')
-rw-r--r-- | include/users.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/users.h b/include/users.h index 72f786c57..f7756e7c2 100644 --- a/include/users.h +++ b/include/users.h @@ -46,7 +46,7 @@ class CoreExport User : public virtual Base, public Extensible, public CommandRe bool on_access; /* Map of user modes and the params this user has (if any) */ ModeList modes; - /* NickCore account the user is currently loggged in as, if they are logged in */ + /* NickCore account the user is currently logged in as, if they are logged in */ Serialize::Reference<NickCore> nc; /* # of invalid password attempts */ @@ -161,13 +161,13 @@ class CoreExport User : public virtual Base, public Extensible, public CommandRe /** Update the real ident (username) of a user record. * @param ident The new ident to give this user. - * NOTE: Where possible, you should use the Get/SetVIdent() equivilants. + * NOTE: Where possible, you should use the Get/SetVIdent() equivalents. */ void SetIdent(const Anope::string &ident); /** Get the real ident (username) of this user. * @return The displayed ident of this user. - * NOTE: Where possible, you should use the Get/SetVIdent() equivilants. + * NOTE: Where possible, you should use the Get/SetVIdent() equivalents. */ const Anope::string &GetIdent() const; |