Skip to content

Commit

Permalink
Fix typp in the documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
nyamsprod committed Oct 8, 2023
1 parent 3e0c482 commit 5fc3e33
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions docs/9.0/reader/tabular-data-reader.md
Original file line number Diff line number Diff line change
Expand Up @@ -379,11 +379,11 @@ $reader = Reader::createFromPath('/path/to/my/file.csv')

### matching, firstMatching, firstOrFailMatching

The `matching` method allows selecting all records or cells from the tabular data reader that match the
RFC7111 expression and returns a new collection containing these elements without preserving the keys.
The method wraps the functionality of `FragmentFinder::all`. Conversely, `firstMatchingz`
wraps the functionality of `FragmentFinder::first` and last but not least,
`FragmentFinder::firstOrFail` behaviour is wrap inside the `firstOrFailMatching` method.
The `matching` method allows selecting records, columns or cells from the tabular data reader that match the
[RFC7111](https://www.rfc-editor.org/rfc/rfc7111) expression and returns a new collection containing these
elements without preserving the keys. The method wraps the functionality of `FragmentFinder::findAll`.
Conversely, `firstMatching` wraps the functionality of `FragmentFinder::findFirst` and last but not least,
`FragmentFinder::findFirstOrFail` behaviour is wrap inside the `firstOrFailMatching` method.

```php
use League\Csv\Reader;
Expand Down

0 comments on commit 5fc3e33

Please sign in to comment.