Skip to content

Commit f426fd0

Browse files
committed
Improve documentation
1 parent 59c99f1 commit f426fd0

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ element may be broken up into multiple chunks.
173173
This class reassembles these elements by buffering incomplete ones.
174174

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

388388
```bash
389-
$ composer require clue/reactphp-csv:^1.2
389+
composer require clue/reactphp-csv:^1.2
390390
```
391391

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

404404
```bash
405-
$ composer install
405+
composer install
406406
```
407407

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

410410
```bash
411-
$ vendor/bin/phpunit
411+
vendor/bin/phpunit
412412
```
413413

414414
## License

0 commit comments

Comments
 (0)