From b62c9667d583781345813de1c7608ef1957b5b9d Mon Sep 17 00:00:00 2001 From: Brendan Hansknecht Date: Wed, 29 Nov 2023 20:51:13 -0800 Subject: [PATCH] Correct typo Co-authored-by: Ayaz <20735482+ayazhafiz@users.noreply.github.com> Signed-off-by: Brendan Hansknecht --- crates/compiler/builtins/bitcode/src/utils.zig | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/crates/compiler/builtins/bitcode/src/utils.zig b/crates/compiler/builtins/bitcode/src/utils.zig index c53c8a3087..6a77a13d4d 100644 --- a/crates/compiler/builtins/bitcode/src/utils.zig +++ b/crates/compiler/builtins/bitcode/src/utils.zig @@ -22,7 +22,7 @@ extern fn roc_dealloc(c_ptr: *anyopaque, alignment: u32) callconv(.C) void; extern fn roc_dbg(file_path: *anyopaque, message: *anyopaque) callconv(.C) void; -// Sincet roc_dbg is never used by the builtins, we need at export a function that uses it to stop DCE. +// Since roc_dbg is never used by the builtins, we need at export a function that uses it to stop DCE. pub fn test_dbg(file_path: *anyopaque, message: *anyopaque) callconv(.C) void { roc_dbg(file_path, message); }