Skip to content

Commit b6829f9

Browse files
committed
remove bold
1 parent 0b78bb4 commit b6829f9

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

collections.md

+6-6
Original file line numberDiff line numberDiff line change
@@ -512,7 +512,7 @@ $combined->all();
512512
<a name="method-concat"></a>
513513
#### `concat()` {.collection-method}
514514

515-
The `concat` method appends the given `array` or collection's values onto the end of another collection:
515+
The `concat` method appends the given array or collection's values onto the end of another collection:
516516

517517
```php
518518
$collection = collect(['John Doe']);
@@ -1465,7 +1465,7 @@ $collection->implode(function (array $item, int $key) {
14651465
<a name="method-intersect"></a>
14661466
#### `intersect()` {.collection-method}
14671467

1468-
The `intersect` method removes any values from the original collection that are not present in the given `array` or collection. The resulting collection will preserve the original collection's keys:
1468+
The `intersect` method removes any values from the original collection that are not present in the given array or collection. The resulting collection will preserve the original collection's keys:
14691469

14701470
```php
14711471
$collection = collect(['Desk', 'Sofa', 'Chair']);
@@ -1483,7 +1483,7 @@ $intersect->all();
14831483
<a name="method-intersectusing"></a>
14841484
#### `intersectUsing()` {.collection-method}
14851485

1486-
The `intersectUsing` method removes any values from the original collection that are not present in the given `array` or collection, using a custom callback to compare the values. The resulting collection will preserve the original collection's keys:
1486+
The `intersectUsing` method removes any values from the original collection that are not present in the given array or collection, using a custom callback to compare the values. The resulting collection will preserve the original collection's keys:
14871487

14881488
```php
14891489
$collection = collect(['Desk', 'Sofa', 'Chair']);
@@ -1500,7 +1500,7 @@ $intersect->all();
15001500
<a name="method-intersectAssoc"></a>
15011501
#### `intersectAssoc()` {.collection-method}
15021502

1503-
The `intersectAssoc` method compares the original collection against another collection or `array`, returning the key / value pairs that are present in all of the given collections:
1503+
The `intersectAssoc` method compares the original collection against another collection or array, returning the key / value pairs that are present in all of the given collections:
15041504

15051505
```php
15061506
$collection = collect([
@@ -1523,7 +1523,7 @@ $intersect->all();
15231523
<a name="method-intersectassocusing"></a>
15241524
#### `intersectAssocUsing()` {.collection-method}
15251525

1526-
The `intersectAssocUsing` method compares the original collection against another collection or `array`, returning the key / value pairs that are present in both, using a custom comparison callback to determine equality for both keys and values:
1526+
The `intersectAssocUsing` method compares the original collection against another collection or array, returning the key / value pairs that are present in both, using a custom comparison callback to determine equality for both keys and values:
15271527

15281528
```php
15291529
$collection = collect([
@@ -1548,7 +1548,7 @@ $intersect->all();
15481548
<a name="method-intersectbykeys"></a>
15491549
#### `intersectByKeys()` {.collection-method}
15501550

1551-
The `intersectByKeys` method removes any keys and their corresponding values from the original collection that are not present in the given `array` or collection:
1551+
The `intersectByKeys` method removes any keys and their corresponding values from the original collection that are not present in the given array or collection:
15521552

15531553
```php
15541554
$collection = collect([

0 commit comments

Comments
 (0)