Przeglądaj źródła

OR EQUATION CORRECTED

Debashis Chandra Ray 7 lat temu
rodzic
commit
f886e70c71
1 zmienionych plików z 1 dodań i 1 usunięć
  1. 1 1
      JavaScript/JavaScript_SDK/CertainTrust.js

+ 1 - 1
JavaScript/JavaScript_SDK/CertainTrust.js

@@ -277,7 +277,7 @@ CertainTrust.prototype._singleOR = function(arg) {
 
 	resF = f1 + f2 - f1*f2;
 
-	if (this._almostEqual(resF, 0)){ // avoid divide by zero
+	if (this._almostEqual(resF, 0)){
 		f1 = 0.99999;
 		f2 = 0.99999;
 		resF = f1 + f2 - f1*f2;