diff --git a/src/data.cpp b/src/data.cpp index 2ba9bf4..dec710c 100644 --- a/src/data.cpp +++ b/src/data.cpp @@ -500,7 +500,7 @@ void Value::copyOut(void *ptr, StoreType type) const } case StoreType::Bool: { if(src=="true") { *reinterpret_cast(ptr) = true; return; } - else if(src=="flase") { *reinterpret_cast(ptr) = false; return; } + else if(src=="false") { *reinterpret_cast(ptr) = false; return; } } default: break;