Skip to content

Commit

Permalink
Improve documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
yadaiio committed Mar 27, 2024
1 parent 59c99f1 commit 797030a
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ element may be broken up into multiple chunks.
This class reassembles these elements by buffering incomplete ones.

The `Decoder` supports the same optional parameters as the underlying
[`str_getcsv()`](http://php.net/str_getcsv) function.
[`str_getcsv()`](https://www.php.net/manual/en/function.str-getcsv.php) function.
This means that, by default, CSV fields will be delimited by a comma (`,`), will
use a quote enclosure character (`"`) and a backslash escape character (`\`).
This behavior can be controlled through the optional constructor parameters:
Expand Down Expand Up @@ -386,7 +386,7 @@ This project follows [SemVer](https://semver.org/).
This will install the latest supported version:

```bash
$ composer require clue/reactphp-csv:^1.2
composer require clue/reactphp-csv:^1.2
```

See also the [CHANGELOG](CHANGELOG.md) for details about version upgrades.
Expand All @@ -402,13 +402,13 @@ To run the test suite, you first need to clone this repo and then install all
dependencies [through Composer](https://getcomposer.org/):

```bash
$ composer install
composer install
```

To run the test suite, go to the project root and run:

```bash
$ vendor/bin/phpunit
vendor/bin/phpunit
```

## License
Expand Down

0 comments on commit 797030a

Please sign in to comment.