Skip to content

Commit 00b7402

Browse files
committed
be keen to newcomers
1 parent c9bc510 commit 00b7402

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Definition/Builder/ArrayNodeDefinition.php

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -332,10 +332,10 @@ public function performNoDeepMerging()
332332
* Allows extra config keys to be specified under an array without
333333
* throwing an exception.
334334
*
335-
* Those config values are simply ignored and removed from the
336-
* resulting array. This should be used only in special cases where
337-
* you want to send an entire configuration array through a special
338-
* tree that processes only part of the array.
335+
* Those config values are ignored and removed from the resulting
336+
* array. This should be used only in special cases where you want
337+
* to send an entire configuration array through a special tree that
338+
* processes only part of the array.
339339
*
340340
* @param bool $remove Whether to remove the extra keys
341341
*

Definition/PrototypedArrayNode.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -301,7 +301,7 @@ protected function mergeValues($leftSide, $rightSide)
301301
}
302302

303303
foreach ($rightSide as $k => $v) {
304-
// prototype, and key is irrelevant, so simply append the element
304+
// prototype, and key is irrelevant, append the element
305305
if (null === $this->keyAttribute) {
306306
$leftSide[] = $v;
307307
continue;

0 commit comments

Comments
 (0)