From 593955f951c104d25541ab04c252a37505fae85e Mon Sep 17 00:00:00 2001 From: HalidOdat Date: Wed, 1 Apr 2020 10:51:36 +0200 Subject: [PATCH] fixed NumOp documentation --- boa/src/syntax/ast/op.rs | 1 + 1 file changed, 1 insertion(+) 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: ///