diff options
| author | Andrew Kelley <andrew@ziglang.org> | 2024-02-26 18:55:23 -0700 |
|---|---|---|
| committer | Andrew Kelley <andrew@ziglang.org> | 2024-02-26 21:35:33 -0700 |
| commit | a2e87aba664c622fe368ce7fcbcdc499b9fd9cf9 (patch) | |
| tree | 6b860ab5f8c16dd8dfaa4ad091450146f10a718c /lib/std/std.zig | |
| parent | 7b37bc771b9a1ed38b06358269bf6a716a38de60 (diff) | |
| download | zig-a2e87aba664c622fe368ce7fcbcdc499b9fd9cf9.tar.gz zig-a2e87aba664c622fe368ce7fcbcdc499b9fd9cf9.zip | |
rearrange std.zig
This frees up std.zig.fmt to be used for the implementation of `zig
fmt`.
Diffstat (limited to 'lib/std/std.zig')
| -rw-r--r-- | lib/std/std.zig | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/std/std.zig b/lib/std/std.zig index 98a1bba0dd..0781c877cf 100644 --- a/lib/std/std.zig +++ b/lib/std/std.zig @@ -193,7 +193,9 @@ pub const valgrind = @import("valgrind.zig"); /// Constants and types representing the Wasm binary format. pub const wasm = @import("wasm.zig"); -/// Tokenizing and parsing of Zig code and other Zig-specific language tooling. +/// Builds of the Zig compiler are distributed partly in source form. That +/// source lives here. These APIs are provided as-is and have absolutely no API +/// guarantees whatsoever. pub const zig = @import("zig.zig"); pub const start = @import("start.zig"); |
