[ox/claw] Fix typo in error msg

(synced from 3389656ecf)
This commit is contained in:
2022-02-17 03:31:05 -06:00
parent 94e1e960f4
commit 45e5b02879
+1 -1
View File
@@ -45,7 +45,7 @@ Error readClaw(const char *buff, std::size_t buffLen, T *val) {
return OxError(Error_ClawTypeMismatch, "Claw Read: Type mismatch");
}
if (header.typeVersion != getModelTypeVersion<T>()) {
return OxError(Error_ClawTypeVersionMismatch, "Claw Read: Type Verion mismatch");
return OxError(Error_ClawTypeVersionMismatch, "Claw Read: Type Version mismatch");
}
switch (header.fmt) {
case ClawFormat::Metal: