correct spelling

This commit is contained in:
luoshengchang
2022-03-02 16:21:24 +08:00
parent a10e3be791
commit cad6e81d30

View File

@ -28,7 +28,7 @@ bool ObRowKeyCompare::operator()(const ObRowkey *left, const ObRowkey *right)
} else if (OB_UNLIKELY(NULL == left)
|| OB_UNLIKELY(NULL == right)) {
result_code_ = common::OB_INVALID_ARGUMENT;
LOG_WARN_RET(result_code_, "Invaid argument, ", KP(left), KP(right), K_(result_code));
LOG_WARN_RET(result_code_, "Invalid argument, ", KP(left), KP(right), K_(result_code));
} else {
bool_ret = (*left) < (*right);
}