Skip to content

Commit

Permalink
make mdbook test pass by not opening local files or running shell scr…
Browse files Browse the repository at this point in the history
…ipts on Windows
  • Loading branch information
miguelraz committed Mar 6, 2024
1 parent cadc983 commit e4e4762
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion training-slides/src/io.md
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@ See the [std::io::File docs](https://doc.rust-lang.org/std/fs/struct.File.html#i
* Owns a `R: Read`, and `impl BufRead`
* Has a buffer in RAM and reads in large-ish chunks

```rust []
```rust ignore []
use std::io::BufRead;

fn main() -> std::io::Result<()> {
Expand Down
2 changes: 1 addition & 1 deletion training-slides/src/std-lib-tour.md
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ A process builder, providing fine-grained control over how a new process should

Used for interacting with other executables.

```rust []
```rust ignore []
use std::process::Command;

fn main() {
Expand Down

0 comments on commit e4e4762

Please sign in to comment.