From 5f4c52209eab66666cc4a8fd24bf27c372cfd54f Mon Sep 17 00:00:00 2001 From: Andrew Kelley Date: Sun, 2 May 2021 17:17:24 -0700 Subject: [PATCH] AstGen: fix outdated doc comment --- src/AstGen.zig | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/AstGen.zig b/src/AstGen.zig index 4655116975..036d628591 100644 --- a/src/AstGen.zig +++ b/src/AstGen.zig @@ -1,8 +1,4 @@ -//! A Work-In-Progress `Zir`. This is a shared parent of all -//! `GenZir` scopes. Once the `Zir` is produced, this struct -//! is deinitialized. -//! The `GenZir.finish` function converts this to a `Zir`. - +//! Ingests an AST and produces ZIR code. const AstGen = @This(); const std = @import("std");