Skip to content

Commit c3be903

Browse files
gibbyfreeehuss
authored andcommitted
fix rustdoc failures
1 parent 5784e53 commit c3be903

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/attributes/debugger.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ Consider a crate with this directory structure:
2828

2929
Where `main.rs` contains:
3030

31-
```rust
31+
```rust ignore
3232
#![debugger_visualizer(natvis_file = "../Rectangle.natvis")]
3333
struct FancyRect {
3434
pub x: f32,
@@ -39,7 +39,7 @@ struct FancyRect {
3939

4040
fn main() {
4141
let fancy_rect = FancyRect::new(10.0, 10.0, 5.0, 5.0);
42-
Ok(())
42+
Ok(());
4343
}
4444
```
4545

@@ -101,7 +101,7 @@ Consider a crate called `foobar` with this directory structure:
101101

102102
Where `main.rs` contains:
103103

104-
```rust
104+
```rust ignore
105105
#![debugger_visualizer(gdb_script_file = "../bar.py")]
106106
mod person {
107107
pub struct Person {
@@ -114,7 +114,7 @@ use person::Person;
114114

115115
fn main() {
116116
let bob = Person::new(String::from("Bob"), 10);
117-
Ok(())
117+
Ok(());
118118
}
119119
```
120120

0 commit comments

Comments
 (0)