From 88f423a38bdf818618f52d24242942396a0b5685 Mon Sep 17 00:00:00 2001 From: Githubaccountlol <13028836+Githubaccountlol@users.noreply.github.com> Date: Wed, 26 Feb 2025 03:04:54 -0600 Subject: [PATCH] Update doc.odin --- core/mem/doc.odin | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/mem/doc.odin b/core/mem/doc.odin index 98755d79770..580b08c9640 100644 --- a/core/mem/doc.odin +++ b/core/mem/doc.odin @@ -16,8 +16,8 @@ a multipointer can be indexed, but does not have a definite length. A slice is a pointer that points to multiple objects equipped with the length, specifying the amount of objects a slice points to. -When object's values are read through a pointer, that operation is called a -*load* operation. When memory is read through a pointer, that operation is +When an object's values are read through a pointer, that operation is called a +*load* operation. When memory is written to through a pointer, that operation is called a *store* operation. Both of these operations can be called a *memory access operation*.