| author | |
| committer | |
| log | bf355867db0894a372c835806d5ec691005d87d2 |
| tree | 69dd709d13e26c9ca5a9abed2e155f068e085380 |
| parent | 2255bb8f0e6e6b65c5262da534fde0c2c638ff39 |
| signature |
2 files changed, 2 insertions(+), 2 deletions(-)
README.md+1-1| ... | ... | @@ -3,7 +3,7 @@ |
| 3 | 3 |  |
| 4 | 4 | [](https://github.com/nektro/zig-flag/blob/master/LICENSE) |
| 5 | 5 | [](https://github.com/sponsors/nektro) |
| 6 | [](https://ziglang.org/) | |
| 6 | [](https://ziglang.org/) | |
| 7 | 7 | [](https://github.com/nektro/zigmod) |
| 8 | 8 | |
| 9 | 9 | Config management for Zig. |
src/lib.zig+1-1| ... | ... | @@ -1,7 +1,7 @@ |
| 1 | 1 | const std = @import("std"); |
| 2 | 2 | const builtin = @import("builtin"); |
| 3 | 3 | const string = [:0]const u8; |
| 4 | const List = std.ArrayList(string); | |
| 4 | const List = std.array_list.Managed(string); | |
| 5 | 5 | const extras = @import("extras"); |
| 6 | 6 | const linux = @import("sys-linux"); |
| 7 | 7 |