aboutsummaryrefslogtreecommitdiffstats
path: root/util.c
diff options
context:
space:
mode:
authorMattias Andrée <m@maandree.se>2026-02-22 14:14:58 +0100
committerMattias Andrée <m@maandree.se>2026-02-22 14:14:58 +0100
commit196b364aaee197fa24bb9ef3363b6447df74bb02 (patch)
tree904b2660a4df082c020a67bb758e865aa8c533ca /util.c
parentm misc (diff)
downloadcoopgammad-196b364aaee197fa24bb9ef3363b6447df74bb02.tar.gz
coopgammad-196b364aaee197fa24bb9ef3363b6447df74bb02.tar.bz2
coopgammad-196b364aaee197fa24bb9ef3363b6447df74bb02.tar.xz
fix doc textHEAD1.3.3master
Signed-off-by: Mattias Andrée <m@maandree.se>
Diffstat (limited to 'util.c')
-rw-r--r--util.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/util.c b/util.c
index 7daeb52..f1019aa 100644
--- a/util.c
+++ b/util.c
@@ -92,7 +92,7 @@ fail:
* Not cancelled by `EINTR`
*
* @param fd The file descriptor
- * @param buf The buffer which shall be written to the fail
+ * @param buf The buffer which shall be written to the file
* @param n The size of the buffer
* @return The number of written bytes, less than `n`
* on error, cannot exceed `n`
@@ -119,7 +119,7 @@ nwrite(int fd, const void *restrict buf, size_t n)
/**
- * Perform a timed suspention of the process.
+ * Perform a timed suspension of the process.
* The process resumes when the timer expires,
* or when it is interrupted.
*