Skip to content

Commit 1a021b9

Browse files
authored
Update README.md
Bugfix in the usage sample code
1 parent 164799f commit 1a021b9

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ Here is an async HTTP server built with just the event loop.
4949
fclose($conn);
5050
$loop->removeStream($conn);
5151
} else {
52-
$data = substr($data, 0, $written);
52+
$data = substr($data, $written);
5353
}
5454
});
5555
});

0 commit comments

Comments
 (0)