Correct typo

Co-authored-by: Ayaz <20735482+ayazhafiz@users.noreply.github.com>
Signed-off-by: Brendan Hansknecht <Brendan.Hansknecht@gmail.com>
This commit is contained in:
Brendan Hansknecht 2023-11-29 20:51:13 -08:00 committed by Brendan Hansknecht
parent f5fb01fd53
commit b62c9667d5
No known key found for this signature in database
GPG key ID: 0EA784685083E75B

View file

@ -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);
}