Fix various typos in code comments (#1670) [skip ci]
Found via `codespell -q 3 -S *.ts,*.xml -L ba,keypair,numer,uint`
This commit is contained in:
@@ -309,7 +309,7 @@ bool rational::operator<(const rational &rhs) const
|
||||
|
||||
if (rhs == RATIONAL_MAX
|
||||
|| *this == RATIONAL_MIN) {
|
||||
// We will always wither be LESS THAN (true) or EQUAL (false)
|
||||
// We will always either be LESS THAN (true) or EQUAL (false)
|
||||
return (*this != rhs);
|
||||
}
|
||||
|
||||
@@ -342,7 +342,7 @@ bool rational::operator<=(const rational &rhs) const
|
||||
|
||||
if (rhs == RATIONAL_MAX
|
||||
|| *this == RATIONAL_MIN) {
|
||||
// We will always wither be LESS THAN (true) or EQUAL (true)
|
||||
// We will always either be LESS THAN (true) or EQUAL (true)
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user