Skip to content

Commit 0545180

Browse files
authored
Merge pull request #57 from dandelionred/master
Bugfix in the usage sample code
2 parents 164799f + 1a021b9 commit 0545180

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)