Skip to content

Commit

Permalink
Fixed incorrect comment about return value in Expression.coffee
Browse files Browse the repository at this point in the history
  • Loading branch information
MatthewJA committed May 21, 2015
1 parent 251d3c6 commit 50ef690
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion coffeequate/src/Expression.coffee
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ define ["parse", "nodes"], (parse, nodes) ->
#
# @param variable [String] The variable to solve for.
# @param equivalencies [Object] Optional. A map of variable labels to a list of equivalent variable labels.
# @return [Expression] A solved Expression representing the variable.
# @return [Array<Expression>] An array of Expressions representing the variable for each solution.
solve: (variable, equivalencies={}) ->
(new Expression(solution) for solution in @expr.solve(variable, equivalencies))

Expand Down

0 comments on commit 50ef690

Please sign in to comment.