diff options
| author | Jubilee <46493976+workingjubilee@users.noreply.github.com> | 2023-10-05 00:56:29 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-05 00:56:29 -0700 |
| commit | ea3454eabb6ac1ac4c0fb1326e72b4f19505b0b8 (patch) | |
| tree | 7e18557b3c4ab0b235629844dbc21d4cb61be7f9 /compiler/rustc_codegen_cranelift | |
| parent | 5236c8e1fa25c45f11f02ae72fc27f64d86ba606 (diff) | |
| parent | f44d116e1f9a513b8730c1629bf17592bcd9784a (diff) | |
| download | rust-ea3454eabb6ac1ac4c0fb1326e72b4f19505b0b8.tar.gz rust-ea3454eabb6ac1ac4c0fb1326e72b4f19505b0b8.zip | |
Rollup merge of #116223 - catandcoder:master, r=cjgillot
Fix misuses of a vs an Fixes the misuse of "a" vs "an", according to English grammatical expectations and using https://www.a-or-an.com/
Diffstat (limited to 'compiler/rustc_codegen_cranelift')
| -rw-r--r-- | compiler/rustc_codegen_cranelift/src/abi/mod.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_codegen_cranelift/src/abi/mod.rs b/compiler/rustc_codegen_cranelift/src/abi/mod.rs index 5d775b9b532..5c7d7b20c5d 100644 --- a/compiler/rustc_codegen_cranelift/src/abi/mod.rs +++ b/compiler/rustc_codegen_cranelift/src/abi/mod.rs @@ -30,7 +30,7 @@ fn clif_sig_from_fn_abi<'tcx>( let inputs = fn_abi.args.iter().flat_map(|arg_abi| arg_abi.get_abi_param(tcx).into_iter()); let (return_ptr, returns) = fn_abi.ret.get_abi_return(tcx); - // Sometimes the first param is an pointer to the place where the return value needs to be stored. + // Sometimes the first param is a pointer to the place where the return value needs to be stored. let params: Vec<_> = return_ptr.into_iter().chain(inputs).collect(); Signature { params, returns, call_conv } |
