Skip to content

Commit e6a3300

Browse files
committed
Fix typos in documentation
1 parent 825cbda commit e6a3300

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ This way, more people get a chance to take a look at the code before the public
3333
## Quickstart example
3434

3535
TSV (Tab-Separated Values) is a very simple text-based format for storing a
36-
large number of (uniform) records, such as a list of temparature records or log
36+
large number of (uniform) records, such as a list of temperature records or log
3737
entries.
3838

3939
```
@@ -182,7 +182,7 @@ it will emit an `error` event and then `close` the input stream:
182182
183183
```php
184184
$stream->on('error', function (Exception $error) {
185-
// an error occured, stream will close next
185+
// an error occurred, stream will close next
186186
});
187187
```
188188
@@ -255,7 +255,7 @@ it will emit an `error` event and then `close` the input stream:
255255
256256
```php
257257
$stream->on('error', function (Exception $error) {
258-
// an error occured, stream will close next
258+
// an error occurred, stream will close next
259259
});
260260
```
261261

examples/users.tsv

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,5 @@ fifth 1973-01-01 5.1.1.1
77
sixth 1962-01-01 6.1.1.1
88
seventh 1951-01-01 7.1.1.1
99
eighth 1940-01-01 8.1.1.1
10-
nineth 1939-01-01 9.1.1.1
10+
ninth 1939-01-01 9.1.1.1
1111
tenth 1928-01-01

0 commit comments

Comments
 (0)