From e6e7e657e2aae2cc474d1324d3f4508bd7b1d08c Mon Sep 17 00:00:00 2001 From: Eric Huss Date: Wed, 13 May 2020 09:09:10 -0700 Subject: [PATCH] Fix stray plus signs. --- src/items/functions.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 */