1
0
mirror of synced 2025-04-21 22:25:55 +03:00

Fix typo in README (#625)

This commit is contained in:
Ivan Fefer 2020-08-25 13:38:16 +03:00 committed by GitHub
parent 9dcffda7ae
commit 1184bbe4cb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -197,7 +197,7 @@ svr.Get("/stream", [&](const Request &req, Response &res) {
// prepare data... // prepare data...
sink.write(data.data(), data.size()); sink.write(data.data(), data.size());
} else { } else {
done(); // No more data sink.done(); // No more data
} }
return true; // return 'false' if you want to cancel the process. return true; // return 'false' if you want to cancel the process.
}); });