From 392da6428dba1885b888654c7365198de73661ba Mon Sep 17 00:00:00 2001 From: Guillaume Chatelet Date: Wed, 17 Nov 2021 15:10:56 +0000 Subject: [PATCH] [libc] Fix documentation typo --- libc/src/string/memory_utils/elements.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libc/src/string/memory_utils/elements.h b/libc/src/string/memory_utils/elements.h index 63e30ba..119e819 100644 --- a/libc/src/string/memory_utils/elements.h +++ b/libc/src/string/memory_utils/elements.h @@ -24,12 +24,12 @@ namespace __llvm_libc { // higher order abstractions. Each function is defined twice: once with // fixed-size operations, and once with runtime-size operations. -// Fixed-size copies from 'src' to 'dst'. +// Fixed-size copy from 'src' to 'dst'. template void Copy(char *__restrict dst, const char *__restrict src) { Element::Copy(dst, src); } -// Runtime-size copies from 'src' to 'dst'. +// Runtime-size copy from 'src' to 'dst'. template void Copy(char *__restrict dst, const char *__restrict src, size_t size) { Element::Copy(dst, src, size); -- 2.7.4