Core/String: Fix documentation comments

Former-commit-id: 02fd62caaafce0376b387d9c8365b3ca89e32a78
This commit is contained in:
Lynix 2016-03-08 13:12:02 +01:00
parent d6ff7d065e
commit b524d9395a
1 changed files with 2 additions and 4 deletions

View File

@ -5855,13 +5855,12 @@ namespace Nz
}
/*!
* \brief Serializes the string
* \brief Serializes a string
* \return true if successful
*
* \param context Context of serialization
* \param string String to serialize
*/
bool Serialize(SerializationContext& context, const String& string)
{
if (!Serialize<UInt32>(context, string.GetSize()))
@ -5871,13 +5870,12 @@ namespace Nz
}
/*!
* \brief Unserializes the string
* \brief Unserializes a string
* \return true if successful
*
* \param context Context of unserialization
* \param string String to unserialize
*/
bool Unserialize(SerializationContext& context, String* string)
{
UInt32 size;