Skip to content

Commit

Permalink
minor: Spacing of recursive type error reporting
Browse files Browse the repository at this point in the history
  • Loading branch information
stephane-caron committed Aug 8, 2024
1 parent 85c6c01 commit e409ee8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Dictionary.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ void Dictionary::update(mpack_node_t node) {
try {
it->second->update(value_node);
} catch (const TypeError &e) {
throw TypeError(e, "(at key \"" + key + "\") ");
throw TypeError(e, " (at key \"" + key + "\")");
}
}
}
Expand Down

0 comments on commit e409ee8

Please sign in to comment.