aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--include/strings.h6
-rw-r--r--src/strings/bcmp.c2
-rw-r--r--src/strings/bcopy.c2
-rw-r--r--src/strings/bzero.c2
4 files changed, 6 insertions, 6 deletions
diff --git a/include/strings.h b/include/strings.h
index 31bb5a7..fdf6605 100644
--- a/include/strings.h
+++ b/include/strings.h
@@ -31,7 +31,7 @@
/**
* Override a memory segment with zeroes.
*
- * @etymology (B)uffer: (zero) out.
+ * @etymology (B)ytes: (zero) out.
*
* @param segment The memory segment to override.
* @param size The size of the memory segment.
@@ -61,7 +61,7 @@ void explicit_bzero(void*, size_t);
/**
* Copy a memory segment to another, possibly overlapping, segment.
*
- * @etymology (B)uffer: (copy).
+ * @etymology (B)ytes: (copy).
*
* @param whence The source memory segment.
* @param whither The destination memory segment.
@@ -75,7 +75,7 @@ void bcopy(const void*, void*, size_t)
/**
* This function is identical to `memcmp`.
*
- * @etymology (B)uffer: (c)o(mp)are.
+ * @etymology (B)ytes: (c)o(mp)are.
*
* @since Always.
*/
diff --git a/src/strings/bcmp.c b/src/strings/bcmp.c
index 73f98be..34c2849 100644
--- a/src/strings/bcmp.c
+++ b/src/strings/bcmp.c
@@ -23,7 +23,7 @@
/**
* This function is identical to `memcmp`.
*
- * @etymology (B)uffer: (c)o(mp)are.
+ * @etymology (B)ytes: (c)o(mp)are.
*
* @since Always.
*/
diff --git a/src/strings/bcopy.c b/src/strings/bcopy.c
index fa44e87..1a674e2 100644
--- a/src/strings/bcopy.c
+++ b/src/strings/bcopy.c
@@ -23,7 +23,7 @@
/**
* Copy a memory segment to another, possibly overlapping, segment.
*
- * @etymology (B)uffer: (copy).
+ * @etymology (B)ytes: (copy).
*
* @param whence The source memory segment.
* @param whither The destination memory segment.
diff --git a/src/strings/bzero.c b/src/strings/bzero.c
index a85bbda..01ba671 100644
--- a/src/strings/bzero.c
+++ b/src/strings/bzero.c
@@ -23,7 +23,7 @@
/**
* Override a memory segment with zeroes.
*
- * @etymology (B)uffer: (zero) out.
+ * @etymology (B)ytes: (zero) out.
*
* @param segment The memory segment to override.
* @param size The size of the memory segment.