diff options
| author | Jacob Young <jacobly0@users.noreply.github.com> | 2024-12-20 16:37:25 -0500 |
|---|---|---|
| committer | Jacob Young <jacobly0@users.noreply.github.com> | 2024-12-20 22:51:20 -0500 |
| commit | 5c76e08f494b7412c1b089cac90bda14e2a45c0b (patch) | |
| tree | 41d48c5a7db067bed24093179107e9cdad60ead5 /src/Type.zig | |
| parent | 06206479a91be3cac9d5169b61c8691744fd5135 (diff) | |
| download | zig-5c76e08f494b7412c1b089cac90bda14e2a45c0b.tar.gz zig-5c76e08f494b7412c1b089cac90bda14e2a45c0b.zip | |
lldb: add pretty printer for intern pool indices
Diffstat (limited to 'src/Type.zig')
| -rw-r--r-- | src/Type.zig | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Type.zig b/src/Type.zig index e3056fdd21..850e50c82e 100644 --- a/src/Type.zig +++ b/src/Type.zig @@ -891,7 +891,7 @@ pub const ResolveStratLazy = enum { }; /// The chosen strategy can be easily optimized away in release builds. -/// However, in debug builds, it helps to avoid acceidentally resolving types in backends. +/// However, in debug builds, it helps to avoid accidentally resolving types in backends. pub const ResolveStrat = enum { /// Assert that all necessary resolution is completed. /// Backends should typically use this, since they must not perform type resolution. |
