Skip to content

Commit bae5b67

Browse files
committed
fix apparent typo, this should have tests though, fixes #12174 !strict, thanks cyan
1 parent 87ffafa commit bae5b67

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

math/BigInteger.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ define(["dojo", "dojox"], function(dojo, dojox) {
133133
else if(b == 2) k = 1;
134134
else if(b == 32) k = 5;
135135
else if(b == 4) k = 2;
136-
else { this.fromRadix(s,b); return; }
136+
else { this._fromRadix(s,b); return; }
137137
this.t = 0;
138138
this.s = 0;
139139
var i = s.length, mi = false, sh = 0;

0 commit comments

Comments
 (0)