Skip to content

Commit

Permalink
[reference] Fix typo in extern fn section
Browse files Browse the repository at this point in the history
  • Loading branch information
mbrubeck committed Jun 12, 2015
1 parent a2f2a64 commit 334ce91
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/doc/reference.md
Expand Up @@ -1111,7 +1111,7 @@ extern fn new_i32() -> i32 { 0 }
extern "stdcall" fn new_i32_stdcall() -> i32 { 0 }
```

Unlike normal functions, extern fns have an `extern "ABI" fn()`. This is the
Unlike normal functions, extern fns have type `extern "ABI" fn()`. This is the
same type as the functions declared in an extern block.

```
Expand Down

0 comments on commit 334ce91

Please sign in to comment.