Fix various grammatical and spelling mistakes within the docs

This commit is contained in:
Arek Sredzki
2019-01-17 10:31:16 -08:00
committed by Arek Sredzki
parent a6dad0885f
commit fac2c8a7ce
7 changed files with 20 additions and 17 deletions

View File

@@ -134,7 +134,7 @@ public:
}
//since all containers .size() method returns size_t, it cannot be directly serialized, because size_t is platform dependant
//this function returns number of bytes writen to buffer, when reading/writing size of container
//this function returns number of bytes written to buffer, when reading/writing size of container
static size_t containerSizeSerializedBytesCount(size_t elemsCount) {
if (elemsCount < 0x80u)
return 1;