microzig
microzig copied to clipboard
Many function names do not follow Zig convention.
Per Zig documentation:
If x is callable [a function], and x's return type is type, then x should be TitleCase. If x is otherwise callable, then x should be camelCase.
Microzig uses snake case for normal function names and TitleCase for functions which return a type.
Link to the relevant docs: https://ziglang.org/documentation/master/#Names
I am personally in favour of following their convention, but it's not a hill I'll die on.