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/serialize.h | |
parent | 3f3da905b9bce3b180208ed3e6547f8579779b28 (diff) |
Fix various documentation and formatting issues.
Diffstat (limited to 'include/serialize.h')
-rw-r--r-- | include/serialize.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/include/serialize.h b/include/serialize.h index 544fe3252..b6eb16934 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -82,19 +82,19 @@ class CoreExport Serializable /** Stores the serialised data against the specified key. * @param key The key by which this serialised data should be stored against. - * @param out The serialised data to store. + * @param value The serialised data to store. */ Data& Store(const std::string& key, const Data& value); /** Stores the value against the specified key. * @param key The key by which this value should be stored against. - * @param out The value to store. + * @param value The value to store. */ Data& Store(const std::string& key, const std::string& value); /** Stores the value against the specified key. The value will be converted to a string using ConvToStr. * @param key The key by which this value should be stored against. - * @param out The value to store. + * @param value The value to store. */ template <typename T> Data& Store(const std::string& key, const T& value) |