From a14d6359e7ff78530a23a7430a020f47d08867f7 Mon Sep 17 00:00:00 2001 From: Titus Date: Wed, 23 Feb 2022 17:38:09 +0100 Subject: [PATCH] Fix typo in `functions.md` --- src/items/functions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/items/functions.md b/src/items/functions.md index a2995bcea..814221070 100644 --- a/src/items/functions.md +++ b/src/items/functions.md @@ -191,7 +191,7 @@ extern "C" fn new_i32() -> i32 { 0 } extern "stdcall" fn new_i32_stdcall() -> i32 { 0 } ``` -Just as with [external block], when the `extern` keyword is used and the `"ABI` +Just as with [external block], when the `extern` keyword is used and the `"ABI"` is omitted, the ABI used defaults to `"C"`. That is, this: ```rust