From b1a197ef57450838fc8320475dacee1e6ac019eb Mon Sep 17 00:00:00 2001 From: moritz-john <70295002+moritz-john@users.noreply.github.com> Date: Wed, 1 Jan 2025 09:46:06 +0100 Subject: [PATCH] Fix: typo in comment Fix: 'becauseonce' -> 'because once' --- src/font/discovery.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/font/discovery.zig b/src/font/discovery.zig index e73ea626f1..071407d92b 100644 --- a/src/font/discovery.zig +++ b/src/font/discovery.zig @@ -551,7 +551,7 @@ pub const CoreText = struct { for (0..result.len) |i| { result[i] = list.getValueAtIndex(macos.text.FontDescriptor, i); - // We need to retain becauseonce the list is freed it will + // We need to retain because once the list is freed it will // release all its members. result[i].retain(); }