diff options
author | Sadie Powell <sadie@witchery.services> | 2020-03-30 17:24:12 +0100 |
---|---|---|
committer | Sadie Powell <sadie@witchery.services> | 2020-03-30 17:24:12 +0100 |
commit | 9ebda853f5bc470858501897442610699a5fd5de (patch) | |
tree | 95868366404431602883c9671a0b9f5df60e322f /include/extensible.h | |
parent | 3f3da905b9bce3b180208ed3e6547f8579779b28 (diff) |
Fix various documentation and formatting issues.
Diffstat (limited to 'include/extensible.h')
-rw-r--r-- | include/extensible.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/extensible.h b/include/extensible.h index a9b370405..6c3146884 100644 --- a/include/extensible.h +++ b/include/extensible.h @@ -54,7 +54,7 @@ class CoreExport ExtensionItem : public ServiceProvider, public usecountbase /** Initializes an instance of the ExtensionItem class. * @param key The name of the extension item (e.g. ssl_cert). * @param exttype The type of Extensible that this ExtensionItem applies to. - * @param owner The module which created this ExtensionItem + * @param owner The module which created this ExtensionItem. */ ExtensionItem(const std::string& key, ExtensibleType exttype, Module* owner); @@ -171,10 +171,10 @@ class CoreExport Extensible */ void FreeAllExtItems(); - /** @copydoc Serializable::Deserialize. */ + /** @copydoc Serializable::Deserialize */ bool Deserialize(Data& data) CXX11_OVERRIDE; - /** @copydoc Serializable::Deserialize. */ + /** @copydoc Serializable::Deserialize */ bool Serialize(Serializable::Data& data) CXX11_OVERRIDE; }; |