diff --git a/src/items/functions.md b/src/items/functions.md index fce59050e..138f1169e 100644 --- a/src/items/functions.md +++ b/src/items/functions.md @@ -116,7 +116,7 @@ sufficient context to determine the type parameters. For example, The `extern` function qualifier allows providing function _definitions_ that can be called with a particular ABI: -+ + ```rust,ignore extern "ABI" fn foo() { /* ... */ } ``` @@ -125,7 +125,7 @@ These are often used in combination with [external block] items which provide function _declarations_ that can be used to call functions without providing their _definition_: -+ + ```rust,ignore extern "ABI" { fn foo(); /* no body */