We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 58438af + b7328e2 commit 6c61ee8Copy full SHA for 6c61ee8
ir_cli/src/bin/main.rs
@@ -163,7 +163,7 @@ fn main() {
163
.unwrap();
164
let wasm_output_file = "a.out.wasm";
165
std::fs::write(wasm_output_file, emit_wasm_bytes).unwrap();
166
- println!("writen file {wasm_output_file}");
+ println!("written file {wasm_output_file}");
167
168
// dump ir_abi.json
169
let ctx_main_module = ctx.get_main_module();
@@ -175,7 +175,7 @@ fn main() {
175
let ir_contract_abi_json = ir_contract_abi_info.to_json();
176
let ir_abi_json_filepath = "a.out.abi.json";
177
std::fs::write(ir_abi_json_filepath, ir_contract_abi_json).unwrap();
178
- println!("writen file {ir_abi_json_filepath}");
+ println!("written file {ir_abi_json_filepath}");
179
}
180
181
0 commit comments