summaryrefslogtreecommitdiff
path: root/ext/spl/spl.php
diff options
context:
space:
mode:
Diffstat (limited to 'ext/spl/spl.php')
-rwxr-xr-xext/spl/spl.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/ext/spl/spl.php b/ext/spl/spl.php
index 8a68613417..adbcef6e8a 100755
--- a/ext/spl/spl.php
+++ b/ext/spl/spl.php
@@ -177,7 +177,7 @@
function spl_autoload(string $class_name, string $file_extensions = NULL) {/**/};
/** @ingroup SPL
- * @brief Manual invocation of all registerd autoload functions
+ * @brief Manual invocation of all registered autoload functions
* @since PHP 5.1
*
* @param class_name name of class to load
@@ -371,7 +371,7 @@ class BadMethodCallException extends BadFunctionCallException
* @brief Exception that denotes a value not in the valid domain was used.
* @since PHP 5.1
*
- * This kind of exception should be used to inform about domain erors in
+ * This kind of exception should be used to inform about domain errors in
* mathematical sense.
*
* @see RangeException
@@ -731,7 +731,7 @@ class ArrayObject implements IteratorAggregate, ArrayAccess, Countable
* over Arrays and Objects.
*
* When you want to iterate over the same array multiple times you need to
- * instanciate ArrayObject and let it create ArrayIterator instances that
+ * instantiate ArrayObject and let it create ArrayIterator instances that
* refer to it either by using foreach or by calling its getIterator()
* method manually.
*/