diff options
| author | mlugg <mlugg@mlugg.co.uk> | 2024-07-02 09:51:51 +0100 |
|---|---|---|
| committer | mlugg <mlugg@mlugg.co.uk> | 2024-07-04 21:01:42 +0100 |
| commit | 2f0f1efa6fa50ca27a44d5f7a0c38a6cafbbfb7c (patch) | |
| tree | 0d47a70b6df13e5024f02b3bed2bc2cc1ef95d9f /src/Value.zig | |
| parent | ded5c759f83a4da355a128dd4d7f5e22cbd3cabe (diff) | |
| download | zig-2f0f1efa6fa50ca27a44d5f7a0c38a6cafbbfb7c.tar.gz zig-2f0f1efa6fa50ca27a44d5f7a0c38a6cafbbfb7c.zip | |
compiler: type.zig -> Type.zig
Diffstat (limited to 'src/Value.zig')
| -rw-r--r-- | src/Value.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Value.zig b/src/Value.zig index 5719ed3689..20b24510ef 100644 --- a/src/Value.zig +++ b/src/Value.zig @@ -1,6 +1,6 @@ const std = @import("std"); const builtin = @import("builtin"); -const Type = @import("type.zig").Type; +const Type = @import("Type.zig"); const assert = std.debug.assert; const BigIntConst = std.math.big.int.Const; const BigIntMutable = std.math.big.int.Mutable; |
