1
0
Fork 0

fix copy&paste error

This commit is contained in:
jsteemann 2017-05-04 13:18:13 +02:00
parent d892f280ed
commit 6c3eba939a
1 changed files with 1 additions and 1 deletions

View File

@ -797,7 +797,7 @@ bool Node::getBool() const {
double Node::getDouble() const {
if (type() == NODE) {
throw StoreException("Must not convert NODE type to int");
throw StoreException("Must not convert NODE type to double");
}
return slice().getNumber<double>();
}