Skip to content

Commit

Permalink
fix format for limit
Browse files Browse the repository at this point in the history
  • Loading branch information
mdmunir committed Feb 10, 2016
1 parent 96a9383 commit 033588c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion equations/LimitIfnt2.php
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ public static function getExpresion($code, $decimal = false)
$midle1 = (($b > 15) ? '+' : '-') . " {$b}x + " . ($d - 4);
$midle2 = (($c > 15) ? '+' : '-') . " {$c}x - " . ($d + 4);

return "lim{x right infty}{sqrt{{$a}x^2 {$midle1}}}/{sqrt{x^2 {$midle2}}}";
return "lim{x right infty}{{sqrt{{$a}x^2 {$midle1}}}/{sqrt{x^2 {$midle2}}}}";
}

public static function getValue($code, $decimal = false)
Expand Down

0 comments on commit 033588c

Please sign in to comment.