fix spelling in public headers

This commit is contained in:
Michael Davidsaver
2020-07-03 19:50:55 -07:00
parent b1b71f1520
commit 479f0f1f4d
12 changed files with 49 additions and 49 deletions
+2 -2
View File
@@ -91,7 +91,7 @@ void from_wire(Buffer& buf, std::vector<FieldDesc>& descs, TypeStore& cache, uns
} else {
auto& entry = cache[key];
// copy new node, and any decendents into cache
// copy new node, and any descendants into cache
entry.resize(descs.size()-index);
std::copy(descs.begin()+index,
descs.end(),
@@ -184,7 +184,7 @@ void from_wire(Buffer& buf, std::vector<FieldDesc>& descs, TypeStore& cache, uns
name+='.';
if(code.code==TypeCode::Struct && code==cfld.code) {
// copy decendent indicies for sub-struct
// copy descendant indicies for sub-struct
for(auto& pair : cfld.mlookup) {
fld.mlookup[name+pair.first] = cindex - cref + pair.second;
}