aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--src/err/err.c2
-rw-r--r--src/err/errx.c2
-rw-r--r--src/err/verr.c2
-rw-r--r--src/err/verrx.c2
-rw-r--r--src/slibc-human/machinemode.c2
-rw-r--r--src/stdio/printf.c8
6 files changed, 9 insertions, 9 deletions
diff --git a/src/err/err.c b/src/err/err.c
index d6d754a..f63d2a4 100644
--- a/src/err/err.c
+++ b/src/err/err.c
@@ -28,7 +28,7 @@
*
* @etymology Report (err)or!
*
- * @parma status The exit status the process should have.
+ * @param status The exit status the process should have.
* @param format Formatting-string for the warning.
* @param ... Formatting-arguments.
*/
diff --git a/src/err/errx.c b/src/err/errx.c
index c8e11c9..d29f849 100644
--- a/src/err/errx.c
+++ b/src/err/errx.c
@@ -28,7 +28,7 @@
*
* @etymology (`err`), [x=](lesser variant).
*
- * @parma status The exit status the process should have.
+ * @param status The exit status the process should have.
* @param format Formatting-string for the warning.
* @param ... Formatting-arguments.
*/
diff --git a/src/err/verr.c b/src/err/verr.c
index f88d944..2857c16 100644
--- a/src/err/verr.c
+++ b/src/err/verr.c
@@ -30,7 +30,7 @@
*
* @etymology (V)ariadic version of (`err`).
*
- * @parma status The exit status the process should have.
+ * @param status The exit status the process should have.
* @param format Formatting-string for the warning.
* @param args Formatting-arguments.
*/
diff --git a/src/err/verrx.c b/src/err/verrx.c
index 1c9e40c..4708264 100644
--- a/src/err/verrx.c
+++ b/src/err/verrx.c
@@ -29,7 +29,7 @@
*
* @etymology (V)ariadic version of (`errx`).
*
- * @parma status The exit status the process should have.
+ * @param status The exit status the process should have.
* @param format Formatting-string for the warning.
* @param args Formatting-arguments.
*/
diff --git a/src/slibc-human/machinemode.c b/src/slibc-human/machinemode.c
index da23662..af8c4bb 100644
--- a/src/slibc-human/machinemode.c
+++ b/src/slibc-human/machinemode.c
@@ -52,7 +52,7 @@
/**
* Store permission bits.
*
- * @parma S:char Character representing the bits to set.
+ * @param S:char Character representing the bits to set.
* @param V:mode_t The variables for the permissions.
* @param U:int type First-level index in `bits` for the user.
*/
diff --git a/src/stdio/printf.c b/src/stdio/printf.c
index e927ab7..fa5dce9 100644
--- a/src/stdio/printf.c
+++ b/src/stdio/printf.c
@@ -456,7 +456,7 @@ int dprintf(int fd, const char* restrict format, ...)
* This is a slibc extension added for completeness.
*
* @param fd The file descriptor.
- * @parma flags Flags to pass to `send`, see `send`
+ * @param flags Flags to pass to `send`, see `send`
* for more information.
* @param format The formatting-string.
* @param ... The formatting-arguments.
@@ -723,7 +723,7 @@ int vdprintf(int fd, const char* restrict format, va_list args)
* This is a slibc extension added for completeness.
*
* @param fd The file descriptor.
- * @parma flags Flags to pass to `send`, see `send`
+ * @param flags Flags to pass to `send`, see `send`
* for more information.
* @param format The formatting-string.
* @param args The formatting-arguments.
@@ -997,7 +997,7 @@ int dwprintf(int fd, const wchar_t* restrict format, ...)
* This is a slibc extension added for completeness.
*
* @param fd The file descriptor.
- * @parma flags Flags to pass to `send`, see `send`
+ * @param flags Flags to pass to `send`, see `send`
* for more information.
* @param format The formatting-string.
* @param ... The formatting-arguments.
@@ -1240,7 +1240,7 @@ int vdwprintf(int fd, const wchar_t* restrict format, va_list args)
* This is a slibc extension added for completeness.
*
* @param fd The file descriptor.
- * @parma flags Flags to pass to `send`, see `send`
+ * @param flags Flags to pass to `send`, see `send`
* for more information.
* @param format The formatting-string.
* @param args The formatting-arguments.