Commit 8b1bd5b4 authored by Drew Noakes's avatar Drew Noakes

Typo

parent 3cfd6751
......@@ -19,7 +19,7 @@ protected:
void Serialize(Writer& writer) const {
// This base class just write out name-value pairs, without wrapping within an object.
writer.String("name");
writer.String(name_.c_str(), (SizeType)name_.length()); // Suppling length of string is faster.
writer.String(name_.c_str(), (SizeType)name_.length()); // Supplying length of string is faster.
writer.String("age");
writer.Uint(age_);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment