X-Git-Url: https://git.ralfj.de/rust-101.git/blobdiff_plain/5baae0ea037ed642b7fe8975fb3004b29827d5b1..2d40516a8393db1f27bb822ff95c71a1a9c82537:/workspace/src/part14.rs diff --git a/workspace/src/part14.rs b/workspace/src/part14.rs index fb580f9..5906acf 100644 --- a/workspace/src/part14.rs +++ b/workspace/src/part14.rs @@ -53,7 +53,7 @@ pub mod rgrep { // We also import some other pieces that we will need. extern crate docopt; use self::docopt::Docopt; - use part12::{run, Options, OutputMode}; + use part13::{run, Options, OutputMode}; use std::process; // The `USAGE` string documents how the program is to be called. It's written in a format that `docopt` can parse.