diff options
| author | Matt Brubeck <mbrubeck@limpet.net> | 2015-06-12 08:08:48 -0700 |
|---|---|---|
| committer | Matt Brubeck <mbrubeck@limpet.net> | 2015-06-12 08:08:48 -0700 |
| commit | 334ce914430cdcca8f4d9e91f919f8fd72d48744 (patch) | |
| tree | ae3c1fc58ca49974a8c31334a3281b9fbe6d836a | |
| parent | a2f2a647633505fa83bcd9644d296ad529ebac41 (diff) | |
| download | rust-334ce914430cdcca8f4d9e91f919f8fd72d48744.tar.gz rust-334ce914430cdcca8f4d9e91f919f8fd72d48744.zip | |
[reference] Fix typo in extern fn section
| -rw-r--r-- | src/doc/reference.md | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index 2a0f7b659d1..c19aec78de2 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -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. ``` |
