From 9489d8cc53907331b37378e7fbc3a7401ef5594f Mon Sep 17 00:00:00 2001 From: NaokiM03 <37442712+NaokiM03@users.noreply.github.com> Date: Sun, 22 Dec 2019 18:43:17 +0900 Subject: [PATCH] Fix typo (#419) --- src/parse.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/parse.rs b/src/parse.rs index 83a81dc8..20540c0f 100644 --- a/src/parse.rs +++ b/src/parse.rs @@ -1941,7 +1941,7 @@ impl<'a> Parser<'a> { Parser::new_ext(text, Options::empty()) } - /// Creates a new event iteratorfor a markdown string with given options. + /// Creates a new event iterator for a markdown string with given options. pub fn new_ext(text: &'a str, options: Options) -> Parser<'a> { Parser::new_with_broken_link_callback(text, options, None) }