aboutsummaryrefslogtreecommitdiff
path: root/src/platform
diff options
context:
space:
mode:
Diffstat (limited to 'src/platform')
-rw-r--r--src/platform/posix/posix_aiothr.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/platform/posix/posix_aiothr.c b/src/platform/posix/posix_aiothr.c
index 8378eb79..013e4599 100644
--- a/src/platform/posix/posix_aiothr.c
+++ b/src/platform/posix/posix_aiothr.c
@@ -64,7 +64,7 @@ nni_plat_aiothr_write(int fd, nni_aio *aio)
aio->a_count += n;
progress += n;
while (n) {
- // If we didn't finish the at once, try again.
+ // If we didn't finish it yet, try again.
if (n < iovp->iov_len) {
iovp->iov_len -= n;
iovp->iov_base += n;
@@ -128,7 +128,7 @@ nni_plat_aiothr_read(int fd, nni_aio *aio)
aio->a_count += n;
progress += n;
while (n) {
- // If we didn't finish the at once, try again.
+ // If we didn't finish it yet, try again.
if (n < iovp->iov_len) {
iovp->iov_len -= n;
iovp->iov_base += n;