From 37f5702e6028d71ef6c545dadeba8cf3073b45e3 Mon Sep 17 00:00:00 2001 From: Jason Nichols Date: Fri, 22 Apr 2016 10:14:32 -0400 Subject: [PATCH] Typo in MathImul References x and y, but arguments passed in are called n and m in the h1. --- tc39/spec.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tc39/spec.html b/tc39/spec.html index 79b0791..3eabcd0 100644 --- a/tc39/spec.html +++ b/tc39/spec.html @@ -825,8 +825,8 @@

MathSqrt( x )

MathImul(n, m)

-1. Let _a_ be ToUint32(_x_). -1. Let _b_ be ToUint32(_y_). +1. Let _a_ be ToUint32(_n_). +1. Let _b_ be ToUint32(_m_). 1. Let _product_ be (_a_ × b) modulo 232. 1. If _product_ ≥ 231, return _product_ − 232, otherwise return _product_.