Skip to content

Commit

Permalink
Fix a typo in an error message.
Browse files Browse the repository at this point in the history
  • Loading branch information
bdash committed Jun 7, 2016
1 parent 5211ed4 commit b81362f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Realm/ObjectStore/object_store.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -749,7 +749,7 @@ MismatchedPropertiesException::MismatchedPropertiesException(std::string const&
ObjectSchemaValidationException(object_type), m_old_property(old_property), m_new_property(new_property)
{
if (new_property.type != old_property.type) {
m_what = util::format("Property types for '%1' property doe not match. Old type '%2', new type '%3'.",
m_what = util::format("Property types for '%1' property do not match. Old type '%2', new type '%3'.",
old_property.name,
string_for_property_type(old_property.type),
string_for_property_type(new_property.type));
Expand Down

0 comments on commit b81362f

Please sign in to comment.