summaryrefslogtreecommitdiff
path: root/ext/spl
diff options
context:
space:
mode:
authorVeres Lajos <vlajos@gmail.com>2013-07-24 00:55:43 +0100
committerStanislav Malyshev <stas@php.net>2013-08-04 16:05:36 -0700
commit8d86597d7368460383a33a4399ea7a8b244cd6fa (patch)
tree39778cd6a7c61ad3a00f5ce0f11a59de60836ba2 /ext/spl
parent5f137d080acfc43ec66cc2a904076972edb5de67 (diff)
downloadphp-git-8d86597d7368460383a33a4399ea7a8b244cd6fa.tar.gz
non living code related typo fixes
Diffstat (limited to 'ext/spl')
-rw-r--r--ext/spl/internal/splobjectstorage.inc2
-rwxr-xr-xext/spl/spl.php4
-rw-r--r--ext/spl/tests/spl_priorityqeue_insert_two_params_error.phpt2
3 files changed, 4 insertions, 4 deletions
diff --git a/ext/spl/internal/splobjectstorage.inc b/ext/spl/internal/splobjectstorage.inc
index fa164066c7..ffc6c99488 100644
--- a/ext/spl/internal/splobjectstorage.inc
+++ b/ext/spl/internal/splobjectstorage.inc
@@ -16,7 +16,7 @@
* @since PHP 5.1.2
*
* This container allows to store objects uniquly without the need to compare
- * them one by one. This is only possible internally. The code represenation
+ * them one by one. This is only possible internally. The code representation
* here therefore has a complexity of O(n) while the actual implementation has
* complexity O(1).
*/
diff --git a/ext/spl/spl.php b/ext/spl/spl.php
index fdffda3687..3638a5a2b7 100755
--- a/ext/spl/spl.php
+++ b/ext/spl/spl.php
@@ -260,7 +260,7 @@ class Exception
/** The exception message */
protected $message;
- /** The string represenations as generated during construction */
+ /** The string representations as generated during construction */
private $string;
/** The code passed to the constructor */
@@ -336,7 +336,7 @@ class Exception
{
}
- /** @return string represenation of exception
+ /** @return string representation of exception
*/
public function __toString()
{
diff --git a/ext/spl/tests/spl_priorityqeue_insert_two_params_error.phpt b/ext/spl/tests/spl_priorityqeue_insert_two_params_error.phpt
index 659ffb4bc0..076c687712 100644
--- a/ext/spl/tests/spl_priorityqeue_insert_two_params_error.phpt
+++ b/ext/spl/tests/spl_priorityqeue_insert_two_params_error.phpt
@@ -1,5 +1,5 @@
--TEST--
-SPL: priorityQueue paramter test on insert method
+SPL: priorityQueue parameter test on insert method
--CREDITS--
Sean Burlington www.practicalweb.co.uk
TestFest London May 2009