From d8f1ec2028a28c04e780b39e4a1a4acd30119211 Mon Sep 17 00:00:00 2001 From: Kelvin Davis <273degreeskelvin@gmail.com> Date: Tue, 28 Sep 2021 09:50:58 +1000 Subject: [PATCH] Typo: C ABI -> C API --- src/ffi.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/ffi.md b/src/ffi.md index 825be5a..2abb28e 100644 --- a/src/ffi.md +++ b/src/ffi.md @@ -42,7 +42,7 @@ fn main() { ``` The `extern` block is a list of function signatures in a foreign library, in -this case with the platform's C ABI. The `#[link(...)]` attribute is used to +this case with the platform's C API. The `#[link(...)]` attribute is used to instruct the linker to link against the snappy library so the symbols are resolved.