Skip to content

Commit ab29a47

Browse files
authored
Merge pull request #811 from ehuss/fix-plus
Fix stray plus signs.
2 parents 892b928 + e6e7e65 commit ab29a47

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/items/functions.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -116,7 +116,7 @@ sufficient context to determine the type parameters. For example,
116116
The `extern` function qualifier allows providing function _definitions_ that can
117117
be called with a particular ABI:
118118

119-
+<!-- ignore: fake ABI -->
119+
<!-- ignore: fake ABI -->
120120
```rust,ignore
121121
extern "ABI" fn foo() { /* ... */ }
122122
```
@@ -125,7 +125,7 @@ These are often used in combination with [external block] items which provide
125125
function _declarations_ that can be used to call functions without providing
126126
their _definition_:
127127

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

0 commit comments

Comments
 (0)