about summary refs log tree commit diff
diff options
context:
space:
mode:
authorCensoredUsername <cens.username@gmail.com>2016-07-07 10:27:30 +0200
committerCensoredUsername <cens.username@gmail.com>2016-08-30 16:01:40 +0200
commit30c4173cb8f942afbb1588174e5867eb780cdaa0 (patch)
tree32f38f93c3d012d465d90fd4d71bb9af92e3dbb9
parent516519ee9af3235d5a5ed9bb7afa5bb1a27a8ddf (diff)
downloadrust-30c4173cb8f942afbb1588174e5867eb780cdaa0.tar.gz
rust-30c4173cb8f942afbb1588174e5867eb780cdaa0.zip
Change ABI string from sysV64 to sysv64
-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
     //