diff options
author | Josh Soref <2119212+jsoref@users.noreply.github.com> | 2021-06-17 10:02:30 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-06-17 15:02:30 +0100 |
commit | fd88b756fc20dedea15a8a08c21e8f7af6612e4e (patch) | |
tree | 81faaface4f605d329848b0c9b7dae8c7dad5b7f /include/serialize.h | |
parent | 8d1bc95faf095984dcc39b4c51de5bc5051b9a12 (diff) |
Fix various spelling issues (#274).
Signed-off-by: Josh Soref <jsoref@users.noreply.github.com>.
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 41ab41d9c..406b9698f 100644 --- a/include/serialize.h +++ b/include/serialize.h @@ -46,7 +46,7 @@ namespace Serialize template<typename T> class Reference; } -/** A serialziable object. Serializable objects can be serialized into +/** A serializable object. Serializable objects can be serialized into * abstract data types (Serialize::Data), and then reconstructed or * updated later at any time. */ @@ -105,7 +105,7 @@ class CoreExport Serializable : public virtual Base }; /* A serializable type. There should be one of these classes for each type - * of class that inherits from Serialiable. Used for unserializing objects + * of class that inherits from Serializable. Used for unserializing objects * of this type, as it requires a function pointer to a static member function. */ class CoreExport Serialize::Type : public Base @@ -123,7 +123,7 @@ class CoreExport Serialize::Type : public Base */ Module *owner; - /* The timesatmp for this type. All objects of this type are as up to date as + /* The timestamp for this type. All objects of this type are as up to date as * this timestamp. if curtime == timestamp then we have the most up to date * version of every object of this type. */ |