From 6e4a7f101914b1c767886f97a40e4174148d53ef Mon Sep 17 00:00:00 2001 From: Ari Lazier Date: Mon, 2 May 2016 12:57:15 -0700 Subject: [PATCH] remove extraneous quote --- src/object_store.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/object_store.cpp b/src/object_store.cpp index cf6025a6..3167cca1 100644 --- a/src/object_store.cpp +++ b/src/object_store.cpp @@ -570,7 +570,7 @@ InvalidNullabilityException::InvalidNullabilityException(std::string const& obje MissingObjectTypeException::MissingObjectTypeException(std::string const& object_type, Property const& property) : ObjectSchemaPropertyException(object_type, property) { - m_what = "Property '" + property.name + "' has an invalid type '" + property.object_type + "'.'"; + m_what = "Property '" + property.name + "' has an invalid type '" + property.object_type + "'."; } MismatchedPropertiesException::MismatchedPropertiesException(std::string const& object_type, Property const& old_property, Property const& new_property) :