From 1d4d5a44362f94a38d2e246f350bcbacbc61f39c Mon Sep 17 00:00:00 2001 From: felixrabe Date: Fri, 30 May 2025 14:55:20 +0200 Subject: [PATCH] 066: 'just' -> 'must' --- exercises/066_comptime.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/exercises/066_comptime.zig b/exercises/066_comptime.zig index 9b07a2d..c0145eb 100644 --- a/exercises/066_comptime.zig +++ b/exercises/066_comptime.zig @@ -58,7 +58,7 @@ pub fn main() void { // To be mutable at runtime, these identifiers must refer to // areas of memory. In order to refer to areas of memory, Zig // must know exactly how much memory to reserve for these - // values. Therefore, it follows that we just specify numeric + // values. Therefore, it follows that we must specify numeric // types with specific sizes. The comptime numbers will be // coerced (if they'll fit!) into your chosen runtime types. // For this it is necessary to specify a size, e.g. 32 bit.