typo: greather => greater

This commit is contained in:
KotIsOff
2025-10-14 20:46:38 +03:00
parent 5755c616f3
commit f3ed3d26c8
8 changed files with 12 additions and 12 deletions
+2 -2
View File
@@ -37,13 +37,13 @@ public:
switch (op) {
case VersionOperator::EQUAL:
return *this == other;
case VersionOperator::GREATHER:
case VersionOperator::GREATER:
return *this > other;
case VersionOperator::LESS:
return *this < other;
case VersionOperator::LESS_OR_EQUAL:
return *this <= other;
case VersionOperator::GREATHER_OR_EQUAL:
case VersionOperator::GREATER_OR_EQUAL:
return *this >= other;
default:
return false;