From b81362f2c57c3fd044b2404b3b576abce0a90aa7 Mon Sep 17 00:00:00 2001 From: Mark Rowe Date: Tue, 7 Jun 2016 15:41:29 -0700 Subject: [PATCH] Fix a typo in an error message. --- Realm/ObjectStore/object_store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Realm/ObjectStore/object_store.cpp b/Realm/ObjectStore/object_store.cpp index bded9531a4..993e2d2253 100644 --- a/Realm/ObjectStore/object_store.cpp +++ b/Realm/ObjectStore/object_store.cpp @@ -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));