aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-05-22 11:34:19 +0200
committerTristan Darricau <github@nicofuma.fr>2014-06-14 01:45:27 +0200
commit0e4c7dbda5d878592bc4f45b18a41202e0ab2d21 (patch)
treecdb1ba98a72ceda9690ca22bfa649f1363c7d98a
parentd4cc6990e48ca4f98e16c717dcdbdf37473312fd (diff)
downloadforums-0e4c7dbda5d878592bc4f45b18a41202e0ab2d21.tar
forums-0e4c7dbda5d878592bc4f45b18a41202e0ab2d21.tar.gz
forums-0e4c7dbda5d878592bc4f45b18a41202e0ab2d21.tar.bz2
forums-0e4c7dbda5d878592bc4f45b18a41202e0ab2d21.tar.xz
forums-0e4c7dbda5d878592bc4f45b18a41202e0ab2d21.zip
[ticket/12575] Fix typos in comments
PHPBB3-12575
-rw-r--r--phpBB/phpbb/di/service_collection.php2
-rw-r--r--phpBB/phpbb/di/service_collection_iterator.php6
2 files changed, 4 insertions, 4 deletions
diff --git a/phpBB/phpbb/di/service_collection.php b/phpBB/phpbb/di/service_collection.php
index ebf933d338..f598a1db1a 100644
--- a/phpBB/phpbb/di/service_collection.php
+++ b/phpBB/phpbb/di/service_collection.php
@@ -39,7 +39,7 @@ class service_collection extends \ArrayObject
}
// Because of a PHP issue we have to redefine offsetExists
- // (even <ith a call to the parent):
+ // (even <with a call to the parent):
// https://bugs.php.net/bug.php?id=66834
// https://bugs.php.net/bug.php?id=67067
// But it triggers a sniffer issue that we have to skip
diff --git a/phpBB/phpbb/di/service_collection_iterator.php b/phpBB/phpbb/di/service_collection_iterator.php
index 7870174c08..efea2cd956 100644
--- a/phpBB/phpbb/di/service_collection_iterator.php
+++ b/phpBB/phpbb/di/service_collection_iterator.php
@@ -2,7 +2,7 @@
/**
*
* @package phpBB3
-* @copyright (c) 2011 phpBB Group
+* @copyright (c) 2014 phpBB Group
* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2
*
*/
@@ -12,7 +12,7 @@ namespace phpbb\di;
use Symfony\Component\DependencyInjection\ContainerInterface;
/**
-* Iterator which load the services when they are requested
+* Iterator which loads the services when they are requested
*
* @package phpBB3
*/
@@ -50,7 +50,7 @@ class service_collection_iterator extends \ArrayIterator
}
// Because of a PHP issue we have to redefine offsetExists
- // (even <ith a call to the parent):
+ // (even <with a call to the parent):
// https://bugs.php.net/bug.php?id=66834
// https://bugs.php.net/bug.php?id=67067
// But it triggers a sniffer issue that we have to skip