From: Dmitry Stogov Date: Thu, 16 Jun 2005 15:11:03 +0000 (+0000) Subject: typo X-Git-Tag: php-5.1.0b2~154 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=f5e71d99d511c9434578bf58b784745d60c1e7ee;p=php typo --- diff --git a/Zend/bench.php b/Zend/bench.php index 848a099ea5..de710fa5ff 100644 --- a/Zend/bench.php +++ b/Zend/bench.php @@ -166,7 +166,7 @@ function ary3($n) { /****/ function fibo_r($n){ - return(($n < 2) ? 1 : fibo($n - 2) + fibo_r($n - 1)); + return(($n < 2) ? 1 : fibo_r($n - 2) + fibo_r($n - 1)); } function fibo($n) {