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:
luzpaz
2021-07-13 13:54:30 +02:00
committed by GitHub
parent 539b0582bf
commit 01536f9865
8 changed files with 9 additions and 9 deletions
+2 -2
View File
@@ -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;
}