Skip to content

Commit f61b14d

Browse files
committed
Fix misuses of a vs an
Signed-off-by: cui fliter <[email protected]>
1 parent 159293c commit f61b14d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: src/abi/mod.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ fn clif_sig_from_fn_abi<'tcx>(
3030
let inputs = fn_abi.args.iter().flat_map(|arg_abi| arg_abi.get_abi_param(tcx).into_iter());
3131

3232
let (return_ptr, returns) = fn_abi.ret.get_abi_return(tcx);
33-
// Sometimes the first param is an pointer to the place where the return value needs to be stored.
33+
// Sometimes the first param is a pointer to the place where the return value needs to be stored.
3434
let params: Vec<_> = return_ptr.into_iter().chain(inputs).collect();
3535

3636
Signature { params, returns, call_conv }

0 commit comments

Comments
 (0)