From a8840d5264036641acca0776c1f2ad4c3b2e9258 Mon Sep 17 00:00:00 2001 From: Eric McCarthy Date: Sun, 11 Jul 2021 21:29:50 -0700 Subject: [PATCH] fix typo in name of initial ast file `inital_ast.json` --> `initial_ast.json` --- compiler/src/compiler.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/compiler/src/compiler.rs b/compiler/src/compiler.rs index 82de5ab734..a3f3475593 100644 --- a/compiler/src/compiler.rs +++ b/compiler/src/compiler.rs @@ -241,7 +241,7 @@ impl<'a, F: PrimeField, G: GroupType> Compiler<'a, F, G> { let mut ast: leo_ast::Ast = parse_ast(self.main_file_path.to_str().unwrap_or_default(), program_string)?; if self.proof_options.initial { - ast.to_json_file(self.output_directory.clone(), "inital_ast.json")?; + ast.to_json_file(self.output_directory.clone(), "initial_ast.json")?; } // Preform compiler optimization via canonicalizing AST if its enabled.