Fix various typos throughout the code base (#40934)

Signed-off-by: Ignacio Casal Quinteiro <qignacio@amazon.com>
This commit is contained in:
Ignacio Casal Quinteiro
2025-11-28 16:00:56 +01:00
committed by GitHub
parent 211492602e
commit b00a76427a
9 changed files with 12 additions and 12 deletions

View File

@@ -28,7 +28,7 @@ impl Expression {
context: &EvaluationCtx<D>,
) -> Result<Value<D::Node>, Error> {
match self {
// And/Or expression are seperated because they can sometimes be evaluated
// And/Or expression are separated because they can sometimes be evaluated
// without evaluating both operands.
Expression::Binary(left, BinaryOperator::And, right) => {
let left_bool = left.evaluate(context)?.convert_to_boolean();