From 652eab6e7ee32b6b96effe410c6975b62642b8d4 Mon Sep 17 00:00:00 2001 From: Dylan DPC Date: Fri, 3 May 2019 20:32:56 +0200 Subject: [PATCH] Update custom_preprocessors.rs --- tests/custom_preprocessors.rs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/custom_preprocessors.rs b/tests/custom_preprocessors.rs index dd120eab..6e71fbbd 100644 --- a/tests/custom_preprocessors.rs +++ b/tests/custom_preprocessors.rs @@ -36,7 +36,7 @@ fn ask_the_preprocessor_to_blow_up() { let dummy_book = DummyBook::new(); let temp = dummy_book.build().unwrap(); let mut md = MDBook::load(temp.path()).unwrap(); - md.with_preprecessor(example()); + md.with_preprocessor(example()); md.config .set("preprocessor.nop-preprocessor.blow-up", true) @@ -52,7 +52,7 @@ fn process_the_dummy_book() { let dummy_book = DummyBook::new(); let temp = dummy_book.build().unwrap(); let mut md = MDBook::load(temp.path()).unwrap(); - md.with_preprecessor(example()); + md.with_preprocessor(example()); md.build().unwrap(); }