Skip to content
This repository has been archived by the owner on May 23, 2019. It is now read-only.

Commit

Permalink
Update expressions.js
Browse files Browse the repository at this point in the history
  • Loading branch information
Jack Chaiyakhom committed May 3, 2019
1 parent 8c74b87 commit 86cdb4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/expressions.js
Original file line number Diff line number Diff line change
Expand Up @@ -454,7 +454,7 @@ Expression.prototype._cubicCoefficients = function() {
return {a:a, b:b, c:c, d:d};
};

Term = function(variable) {
var Term = function(variable) {
if (variable instanceof Variable) {
this.variables = [variable.copy()];
} else if (typeof(variable) === "undefined") {
Expand Down

0 comments on commit 86cdb4a

Please sign in to comment.