Skip to content

Commit 7a63c7f

Browse files
qnighycrlf0710
authored andcommitted
Add ignore to doc code
1 parent 440e873 commit 7a63c7f

File tree

1 file changed

+2
-2
lines changed
  • src/doc/unstable-book/src/library-features

1 file changed

+2
-2
lines changed

src/doc/unstable-book/src/library-features/fnbox.md

+2-2
Original file line numberDiff line numberDiff line change
@@ -8,15 +8,15 @@ The tracking issue for this feature is [#28796]
88

99
This had been a temporary alternative to the following impls:
1010

11-
```rust
11+
```rust,ignore
1212
impl<A, F> FnOnce for Box<F> where F: FnOnce<A> + ?Sized {}
1313
impl<A, F> FnMut for Box<F> where F: FnMut<A> + ?Sized {}
1414
impl<A, F> Fn for Box<F> where F: Fn<A> + ?Sized {}
1515
```
1616

1717
The impls are parallel to these (relatively old) impls:
1818

19-
```rust
19+
```rust,ignore
2020
impl<A, F> FnOnce for &mut F where F: FnMut<A> + ?Sized {}
2121
impl<A, F> FnMut for &mut F where F: FnMut<A> + ?Sized {}
2222
impl<A, F> Fn for &mut F where F: Fn<A> + ?Sized {}

0 commit comments

Comments
 (0)