mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-28 06:14:46 +00:00
Fix spelling error in bitcode function name
This commit is contained in:
parent
5e0e3da3b7
commit
9bedb818cb
1 changed files with 1 additions and 1 deletions
|
@ -13,7 +13,7 @@ comptime { exportNumFn(num.asin, "asin"); }
|
||||||
// Str Module
|
// Str Module
|
||||||
const str = @import("str.zig");
|
const str = @import("str.zig");
|
||||||
comptime { exportStrFn(str.strSplitInPlace, "str_split_in_place"); }
|
comptime { exportStrFn(str.strSplitInPlace, "str_split_in_place"); }
|
||||||
comptime { exportStrFn(str.countSegments, "count_segements"); }
|
comptime { exportStrFn(str.countSegments, "count_segments"); }
|
||||||
comptime { exportStrFn(str.countGraphemeClusters, "count_grapheme_clusters"); }
|
comptime { exportStrFn(str.countGraphemeClusters, "count_grapheme_clusters"); }
|
||||||
|
|
||||||
// Export helpers - Must be run inside a comptime
|
// Export helpers - Must be run inside a comptime
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue