From 1842cd6297ae60fba46b43758d5ffc655ef2e58c Mon Sep 17 00:00:00 2001 From: flysand7 Date: Sun, 8 Sep 2024 00:09:18 +1100 Subject: [PATCH] Fix typo Co-authored-by: FourteenBrush <74827262+FourteenBrush@users.noreply.github.com> --- core/mem/mem.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/mem/mem.odin b/core/mem/mem.odin index 2212ee171..0554cee23 100644 --- a/core/mem/mem.odin +++ b/core/mem/mem.odin @@ -98,7 +98,7 @@ compiler assumes volatile semantics of the memory. */ zero_explicit :: proc "contextless" (data: rawptr, len: int) -> rawptr { // This routine tries to avoid the compiler optimizing away the call, - // so that it is always executed. It is intended to provided + // so that it is always executed. It is intended to provide // equivalent semantics to those provided by the C11 Annex K 3.7.4.1 // memset_s call. intrinsics.mem_zero_volatile(data, len) // Use the volatile mem_zero