From 3ad1f3969fe566e59c21b3162536e107369772b9 Mon Sep 17 00:00:00 2001 From: Nik Date: Thu, 15 Jun 2023 22:58:44 +0200 Subject: [PATCH] includes/std: Fixed documentation of copy_value_to_section function --- includes/std/mem.pat | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/includes/std/mem.pat b/includes/std/mem.pat index ec8112e..23ad5ef 100644 --- a/includes/std/mem.pat +++ b/includes/std/mem.pat @@ -174,10 +174,9 @@ namespace std::mem { /** Copies a range of bytes from the main section into a custom section - @param from_section The section to copy from - @param from_address The address to copy from + @param value The pattern whose bytes should be copied + @param to_section The section to copy to @param to_address The address to copy to - @param size The size of the range to copy */ fn copy_value_to_section(ref auto value, Section to_section, u64 to_address) { builtin::std::mem::copy_value_to_section(value, to_section, to_address);