From 0023116b0b733c1455c812bc4958f7ae49539200 Mon Sep 17 00:00:00 2001 From: HalidOdat Date: Wed, 1 Apr 2020 12:17:40 +0200 Subject: [PATCH] Update boa/src/syntax/ast/op.rs Co-Authored-By: Iban Eguia --- boa/src/syntax/ast/op.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/boa/src/syntax/ast/op.rs b/boa/src/syntax/ast/op.rs index 88fa4fc7ca..bbedc5bc9b 100644 --- a/boa/src/syntax/ast/op.rs +++ b/boa/src/syntax/ast/op.rs @@ -531,7 +531,7 @@ impl Display for CompOp { /// Logical operators are typically used with Boolean (logical) values; when they are, they return a Boolean value. /// -/// However, the && and || operators actually return the value of one of the specified operands, +/// However, the `&&` and `||` operators actually return the value of one of the specified operands, /// so if these operators are used with non-Boolean values, they may return a non-Boolean value. /// /// More information: