From 54beb505c3ba0cb3ec4d3c71230cbdbf9519b84c Mon Sep 17 00:00:00 2001 From: collin <16715212+collinc97@users.noreply.github.com> Date: Wed, 2 Mar 2022 12:19:22 -0800 Subject: [PATCH] fix spelling typo --- compiler/compiler/src/lib.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/compiler/src/lib.rs b/compiler/compiler/src/lib.rs index 96401e11d6..a391709356 100644 --- a/compiler/compiler/src/lib.rs +++ b/compiler/compiler/src/lib.rs @@ -82,7 +82,7 @@ impl<'a> Compiler<'a> { program_string, )?; // Write the AST snapshot post parsing. - ast.to_json_file_without_keys(self.output_directory.clone(), "inital_ast.json", &["span"])?; + ast.to_json_file_without_keys(self.output_directory.clone(), "initial_ast.json", &["span"])?; // Canonicalize the AST. ast = leo_ast_passes::Canonicalizer::do_pass(Default::default(), ast.into_repr())?;