summaryrefslogtreecommitdiff
path: root/include/account.h
diff options
context:
space:
mode:
authorPeter Powell <petpow@saberuk.com>2019-12-14 18:37:23 +0000
committerPeter Powell <petpow@saberuk.com>2019-12-14 18:38:13 +0000
commit6617d29b5227f962c348e638a373ebb78989b7ba (patch)
treee2d6da92be797d519cbd8e154d1ba97a8c656884 /include/account.h
parenta4ab6876c3f4afc087a3db90404bbdeb47525e6e (diff)
Fix a bunch of broken indentation.
Diffstat (limited to 'include/account.h')
-rw-r--r--include/account.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/account.h b/include/account.h
index 58dad381e..ad6e8ebac 100644
--- a/include/account.h
+++ b/include/account.h
@@ -45,7 +45,7 @@ class CoreExport NickAlias : public Serializable, public Extensible
/* Account this nick is tied to. Multiple nicks can be tied to a single account. */
Serialize::Reference<NickCore> nc;
- /** Constructor
+ /** Constructor
* @param nickname The nick
* @param nickcore The nickcore for this nick
*/
@@ -55,7 +55,7 @@ class CoreExport NickAlias : public Serializable, public Extensible
void Serialize(Serialize::Data &data) const anope_override;
static Serializable* Unserialize(Serializable *obj, Serialize::Data &);
- /** Set a vhost for the user
+ /** Set a vhost for the user
* @param ident The ident
* @param host The host
* @param creator Who created the vhost
@@ -108,7 +108,7 @@ class CoreExport NickCore : public Serializable, public Extensible
/* Channels which reference this core in some way (this is on their access list, akick list, is founder, successor, etc) */
Serialize::Checker<std::map<ChannelInfo *, int> > chanaccess;
public:
- /* Name of the account. Find(display)->nc == this. */
+ /* Name of the account. Find(display)->nc == this. */
Anope::string display;
/* User password in form of hashm:data */
Anope::string pass;
@@ -242,7 +242,7 @@ class CoreExport IdentifyRequest
virtual ~IdentifyRequest();
public:
- /* One of these is called when the request goes through */
+ /* One of these is called when the request goes through */
virtual void OnSuccess() = 0;
virtual void OnFail() = 0;