From 1e36e9376ce43756f359de7f841c14805c17447e Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 28 Jan 2025 15:04:03 -0500 Subject: [PATCH] spelling: memory Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- docs/common.dox | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/common.dox b/docs/common.dox index 96d72998..d7b6ca73 100644 --- a/docs/common.dox +++ b/docs/common.dox @@ -421,7 +421,7 @@ original allocation or the new size into the newly allocated buffer. \return The destination buffer dest \fn char *strncat(char *dest, const char *src, size_t n) -\brief Concatenates up to n bytes from the string in src to the end of the string pointed by dest and null terminates dest. There should be no overlap of dest and src in memeory. +\brief Concatenates up to n bytes from the string in src to the end of the string pointed by dest and null terminates dest. There should be no overlap of dest and src in memory. \param dest The destination buffer with enough space for src beyond the null character \param src The source string \param n The maximum number of bytes to copy