Skip to content

Commit 30c4173

Browse files
Change ABI string from sysV64 to sysv64
1 parent 516519e commit 30c4173

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/doc/book/ffi.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -539,7 +539,7 @@ This is currently hidden behind the `abi_vectorcall` gate and is subject to chan
539539
* `system`
540540
* `C`
541541
* `win64`
542-
* `sysV64`
542+
* `sysv64`
543543

544544
Most of the abis in this list are self-explanatory, but the `system` abi may
545545
seem a little odd. This constraint selects whatever the appropriate ABI is for

src/libsyntax/abi.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ const AbiDatas: &'static [AbiData] = &[
8787
AbiData {abi: Abi::Vectorcall, name: "vectorcall"},
8888
AbiData {abi: Abi::Aapcs, name: "aapcs" },
8989
AbiData {abi: Abi::Win64, name: "win64" },
90-
AbiData {abi: Abi::SysV64, name: "sysV64" },
90+
AbiData {abi: Abi::SysV64, name: "sysv64" },
9191

9292
// Cross-platform ABIs
9393
//

0 commit comments

Comments
 (0)