diff options
author | John Wiegley <johnw@newartisans.com> | 2010-05-30 02:15:45 -0600 |
---|---|---|
committer | John Wiegley <johnw@newartisans.com> | 2010-05-30 02:15:45 -0600 |
commit | 66a26252df84909224ec18b4ca2adaaca3b01268 (patch) | |
tree | e6815946551fcbffb1b79176decf877f3747ca8c /src/value.cc | |
parent | 33d119d3ea8acc73a93fd45fa6eae6b4f79d2976 (diff) | |
download | fork-ledger-66a26252df84909224ec18b4ca2adaaca3b01268.tar.gz fork-ledger-66a26252df84909224ec18b4ca2adaaca3b01268.tar.bz2 fork-ledger-66a26252df84909224ec18b4ca2adaaca3b01268.zip |
Corrected error message text to be consistent
Diffstat (limited to 'src/value.cc')
-rw-r--r-- | src/value.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/value.cc b/src/value.cc index ce9b0e6a..2888c335 100644 --- a/src/value.cc +++ b/src/value.cc @@ -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; } |