Skip to content

Commit b7328e2

Browse files
authored
Update main.rs
1 parent 58438af commit b7328e2

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ir_cli/src/bin/main.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -163,7 +163,7 @@ fn main() {
163163
.unwrap();
164164
let wasm_output_file = "a.out.wasm";
165165
std::fs::write(wasm_output_file, emit_wasm_bytes).unwrap();
166-
println!("writen file {wasm_output_file}");
166+
println!("written file {wasm_output_file}");
167167

168168
// dump ir_abi.json
169169
let ctx_main_module = ctx.get_main_module();
@@ -175,7 +175,7 @@ fn main() {
175175
let ir_contract_abi_json = ir_contract_abi_info.to_json();
176176
let ir_abi_json_filepath = "a.out.abi.json";
177177
std::fs::write(ir_abi_json_filepath, ir_contract_abi_json).unwrap();
178-
println!("writen file {ir_abi_json_filepath}");
178+
println!("written file {ir_abi_json_filepath}");
179179
}
180180
}
181181
}

0 commit comments

Comments
 (0)