From 033588c1e7ccfdccb7f25bfa2fb16bf260d84d1c Mon Sep 17 00:00:00 2001 From: mdmunir Date: Wed, 10 Feb 2016 13:09:36 +0700 Subject: [PATCH] fix format for limit --- equations/LimitIfnt2.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/equations/LimitIfnt2.php b/equations/LimitIfnt2.php index 10e7fda..06e368b 100644 --- a/equations/LimitIfnt2.php +++ b/equations/LimitIfnt2.php @@ -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)