Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/windirstat/llfio.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-09-13 05:23:28 +0300
committerNiall Douglas (s [underscore] sourceforge {at} nedprod [dot] com) <spamtrap@nedprod.com>2017-09-13 05:23:28 +0300
commit138a4cebf654500e8ac6595384f7de831777ad97 (patch)
treeb7a166054a7b3c618f0bf1a8136958aa565c47a3 /release_notes.md
parentf72a7034def48ea4c284775b67de2cc3e05dde14 (diff)
Fix typo in release_notes
Diffstat (limited to 'release_notes.md')
-rw-r--r--release_notes.md4
1 files changed, 2 insertions, 2 deletions
diff --git a/release_notes.md b/release_notes.md
index ad2dfab0..26369a2b 100644
--- a/release_notes.md
+++ b/release_notes.md
@@ -69,8 +69,8 @@ truncate(fh, 1024).value();
// Begin to asynchronously write "hello world" into the file at offset 0,
// suspending execution of this coroutine until completion and then resuming
// execution. Requires the Coroutines TS.
-char buffer[] = "hello world";
-co_await co_write(fh, {{buffer, sizeof(buffer)}, 0}).value();
+alignas(4096) char buffer[] = "hello world";
+co_await co_write(fh, {{{buffer, sizeof(buffer)}}, 0}).value();
\endcode
</td>
</tr>