about summary refs log tree commit diff
diff options
context:
space:
mode:
-rw-r--r--src/doc/book/ffi.md2
-rw-r--r--src/libsyntax/abi.rs2
2 files changed, 2 insertions, 2 deletions
diff --git a/src/doc/book/ffi.md b/src/doc/book/ffi.md
index 44cc75f8fed..1dea15311ce 100644
--- a/src/doc/book/ffi.md
+++ b/src/doc/book/ffi.md
@@ -539,7 +539,7 @@ This is currently hidden behind the `abi_vectorcall` gate and is subject to chan
 * `system`
 * `C`
 * `win64`
-* `sysV64`
+* `sysv64`
 
 Most of the abis in this list are self-explanatory, but the `system` abi may
 seem a little odd. This constraint selects whatever the appropriate ABI is for
diff --git a/src/libsyntax/abi.rs b/src/libsyntax/abi.rs
index 9fb2b539b8f..64a71133a8c 100644
--- a/src/libsyntax/abi.rs
+++ b/src/libsyntax/abi.rs
@@ -87,7 +87,7 @@ const AbiDatas: &'static [AbiData] = &[
     AbiData {abi: Abi::Vectorcall, name: "vectorcall"},
     AbiData {abi: Abi::Aapcs, name: "aapcs" },
     AbiData {abi: Abi::Win64, name: "win64" },
-    AbiData {abi: Abi::SysV64, name: "sysV64" },
+    AbiData {abi: Abi::SysV64, name: "sysv64" },
 
     // Cross-platform ABIs
     //