From 9fbfca65102a1a9dafa084749402e613f1e46f7a Mon Sep 17 00:00:00 2001 From: Paul Tarjan Date: Wed, 19 Jun 2013 14:23:46 -0700 Subject: [PATCH] fix typo in SplFixedArray --- hphp/system/php/spl/datastructures/SplFixedArray.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hphp/system/php/spl/datastructures/SplFixedArray.php b/hphp/system/php/spl/datastructures/SplFixedArray.php index d37121c88..f33355065 100644 --- a/hphp/system/php/spl/datastructures/SplFixedArray.php +++ b/hphp/system/php/spl/datastructures/SplFixedArray.php @@ -198,7 +198,7 @@ class SplFixedArray implements Iterator, ArrayAccess, Countable { if ($size < count($this->data)) { $this->data = array_slice($this->data, 0, $size); } else if ($size > count($this->data)) { - $this->data = array_pad($thid->data, $size, null); + $this->data = array_pad($this->data, $size, null); } }