Fix spelling error in bitcode function name

This commit is contained in:
Chad Stearns 2020-11-08 13:04:13 -05:00
parent 5e0e3da3b7
commit 9bedb818cb

View file

@ -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