Skip to content

Commit 6feca85

Browse files
authored
Ignore nonexistent crate
1 parent 901071f commit 6feca85

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/mod/use.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
The `use` declaration can be used to bind a full path to a new name, for easier
44
access. It is often used like this:
55

6-
```rust,editable
6+
```rust,editable,ignore
77
// extern crate deeply; // normally, this would exist and not be commented out!
88
99
use deeply::nested::{
@@ -19,7 +19,7 @@ fn main() {
1919

2020
You can use the `as` keyword to bind imports to a different name:
2121

22-
```rust,editable
22+
```rust,editable,ignore
2323
// Bind the `deeply::nested::function` path to `other_function`.
2424
use deeply::nested::function as other_function;
2525

0 commit comments

Comments
 (0)