Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/items/functions.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:

+<!-- ignore: fake ABI -->
<!-- ignore: fake ABI -->
```rust,ignore
extern "ABI" fn foo() { /* ... */ }
```
Expand All @@ -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_:

+<!-- ignore: fake ABI -->
<!-- ignore: fake ABI -->
```rust,ignore
extern "ABI" {
fn foo(); /* no body */
Expand Down