Corrected error message text to be consistent

This commit is contained in:
John Wiegley 2010-05-30 02:15:45 -06:00
parent 33d119d3ea
commit 66a26252df

View file

@ -832,7 +832,7 @@ bool value_t::is_equal_to(const value_t& val) const
break;
}
throw_(value_error, _("Cannot compare %1 by %2") << label() << val.label());
throw_(value_error, _("Cannot compare %1 to %2") << label() << val.label());
return *this;
}