diff --git a/boa/src/syntax/ast/op.rs b/boa/src/syntax/ast/op.rs index 321f72a135..60e5608c1f 100644 --- a/boa/src/syntax/ast/op.rs +++ b/boa/src/syntax/ast/op.rs @@ -18,6 +18,7 @@ pub trait Operator { /// Arithmetic operators take numerical values (either literals or variables) /// as their operands and return a single numerical value. +/// /// More information: /// - MDN documentation: ///