From 4f51d74fc29a3cfa09f00dd598d3751901261902 Mon Sep 17 00:00:00 2001 From: Jeroen van Rijn Date: Thu, 6 May 2021 11:25:41 +0200 Subject: [PATCH] Fix typo in core:mem alloc() comment. --- core/mem/alloc.odin | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/mem/alloc.odin b/core/mem/alloc.odin index 0df68255f..0da7a9708 100644 --- a/core/mem/alloc.odin +++ b/core/mem/alloc.odin @@ -22,7 +22,7 @@ Allocator_Mode_Set :: distinct bit_set[Allocator_Mode]; Allocator_Query_Info :: runtime.Allocator_Query_Info; /* Allocator_Query_Info :: struct { - pointer: Maybe(rawptr), + pointer: rawptr, size: Maybe(int), alignment: Maybe(int), }