Commit b85fa53d authored by Harris Hancock's avatar Harris Hancock

Fix typo

parent 5b5e00fb
...@@ -376,7 +376,7 @@ private: ...@@ -376,7 +376,7 @@ private:
// Write the first piece. // Write the first piece.
auto promise = output.write(writeBuffer.begin(), writeBuffer.size()); auto promise = output.write(writeBuffer.begin(), writeBuffer.size());
// Write full pieces as a singcle gather-write. // Write full pieces as a single gather-write.
if (i > 0) { if (i > 0) {
auto more = morePieces.slice(0, i); auto more = morePieces.slice(0, i);
promise = promise.then([&output,more]() { return output.write(more); }); promise = promise.then([&output,more]() { return output.write(more); });
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment